updates
This commit is contained in:
9
config/nvim/lua/plugins/lazyvim.lua
Normal file
9
config/nvim/lua/plugins/lazyvim.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
{ "ellisonleao/gruvbox.nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "gruvbox",
|
||||
},
|
||||
},
|
||||
}
|
||||
4
config/nvim/lua/plugins/leap-nvim.lua
Normal file
4
config/nvim/lua/plugins/leap-nvim.lua
Normal file
@@ -0,0 +1,4 @@
|
||||
return {
|
||||
"ggandor/leap.nvim",
|
||||
dependencies = { "tpope/vim-repeat" },
|
||||
}
|
||||
9
config/nvim/lua/plugins/neo-tree.lua
Normal file
9
config/nvim/lua/plugins/neo-tree.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v3.x",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
},
|
||||
}
|
||||
29
config/nvim/lua/plugins/nvim-treesitter.lua
Normal file
29
config/nvim/lua/plugins/nvim-treesitter.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"c_sharp",
|
||||
"css",
|
||||
"scss",
|
||||
"dockerfile",
|
||||
"html",
|
||||
"javascript",
|
||||
"json",
|
||||
"lua",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"sql",
|
||||
"python",
|
||||
"query",
|
||||
"regex",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vim",
|
||||
"yaml",
|
||||
"xml",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user