Compare commits

...

3 commits

Author SHA1 Message Date
ecb5e74bad
docs: update README.md 2023-01-15 06:00:38 +00:00
7954e3eac9
chore: update LICENSE 2023-01-15 05:59:56 +00:00
804d192deb
chore: update plugins 2023-01-15 05:59:25 +00:00
3 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022 Dan Anglin
Copyright (c) 2023 Dan Anglin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -1,3 +1,3 @@
# neovim-config
Neovim configuration for neovim version 0.8.0+.
Neovim configuration for neovim version 0.8.2+.

View file

@ -2,37 +2,37 @@ return require("packer").startup(function(use)
-- Packer can manage itself
use {
"wbthomason/packer.nvim",
commit = "6afb67460283f0e990d35d229fd38fdc04063e0a", -- 2022-09-10
commit = "1d0cf98a561f7fd654c970c49f917d74fafe1530", -- 2023-01-11
}
use {
"folke/tokyonight.nvim",
commit = "fd9105c9487996aa2269992b72a6fea7504688e4", -- 2022-10-05
tag = "v1.0.0", -- 2023-01-04
config = require("plugins.config.tokyonight"),
}
use {
"neovim/nvim-lspconfig",
commit = "1c2a57d991548995030748088a7ded73a7b5f496", -- 2022-10-06
commit = "ed88435764d8b00442e66d39ec3d9c360e560783", -- 2023-01-14
config = require("plugins.config.lsp"),
}
use {
"nvim-treesitter/nvim-treesitter",
commit = "a33858d399d0da226b0cf7b45fe9dc8f0a06547b", -- 2022-10-06
commit = "372177fb996b7d94246fd214cc44573116704618", -- 2023-01-14
config = require("plugins.config.treesitter"),
run = ":TSUpdate",
}
use {
"kyazdani42/nvim-web-devicons",
commit = "a8cf88cbdb5c58e2b658e179c4b2aa997479b3da", -- 2022-10-03
"nvim-tree/nvim-web-devicons",
commit = "6c38926351372ea87034dec26182b62c835ff3bc", -- 2023-01-09
}
use {
"akinsho/bufferline.nvim",
tag = "v2.12.0", -- 2022.10.03
requires = "kyazdani42/nvim-web-devicons",
tag = "v3.1.0", -- 2022.10.28
requires = "nvim-tree/nvim-web-devicons",
config = require("plugins.config.bufferline"),
}