Cleaned base and added fish config

This commit is contained in:
hellisabove
2025-02-01 21:24:10 +02:00
parent aa920cc3b4
commit 3197b6a33c
15 changed files with 474 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
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'
}
}
})