Update plugins

This commit is contained in:
whitney 2025-03-14 18:57:28 -07:00
parent 4d4242a3e7
commit c5f0ea4a94
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = false,
},
},
},
}

View File

@ -0,0 +1,22 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
ignore_install = {},
highlight = {
enable = true,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "gnn",
node_incremental = "grn",
scope_incremental = "grc",
node_decremental = "grm",
},
},
indent = {
enable = true,
},
},
}