Moving to lazy nvim

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-22 14:51:21 +02:00
parent 128bf12422
commit ce905b45fb
30 changed files with 221 additions and 159 deletions

View File

@@ -0,0 +1,24 @@
local setup, nvimtree = pcall(require, "nvim-tree")
if not setup then
return
end
nvimtree.setup({
sync_root_with_cwd = true,
view = {
width = 30,
},
git = {
ignore = false,
},
filters = {
dotfiles = false,
custom = {
"node_modules",
".git"
},
exclude = {
".gitignore"
}
},
})