Files
2025-02-01 21:24:10 +02:00

38 lines
704 B
Lua

vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.opt.termguicolors = true
require("nvim-tree").setup({
actions = {
open_file = {quit_on_open=true}
},
update_focused_file = {
enable = true,
update_cwd = true
},
filters = {
custom = { '^.git$','node_modules$' }
},
git = {
enable = true
},
log = {
enable = true,
types = {
diagnostics = true
}
},
diagnostics = {
enable = true,
show_on_dirs=false,
debounce_delay=50,
icons = {
hint = 'H',
info = 'I',
warning = 'W',
error = 'E'
}
}
})