This commit is contained in:
KaasKop-
2023-12-25 13:02:39 +01:00
parent 0f3d3816f3
commit 9c57c14d00
22 changed files with 656 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
return {
{ "ellisonleao/gruvbox.nvim" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
},
}

View File

@@ -0,0 +1,4 @@
return {
"ggandor/leap.nvim",
dependencies = { "tpope/vim-repeat" },
}

View 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",
},
}

View 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",
},
},
},
}