Simplify config

This commit is contained in:
Saeed Afzal
2023-12-21 23:10:23 +00:00
parent 862d8bb1ec
commit 7d7b0fff77
17 changed files with 101 additions and 253 deletions

View File

@@ -1,24 +0,0 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim"
},
cmd = "Neotree",
init = function()
vim.fn.sign_define("DiagnosticSignError", { text = "", texthl = "DiagnosticSignError" })
vim.fn.sign_define("DiagnosticSignWarn", { text = "", texthl = "DiagnosticSignWarn" })
vim.fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo" })
vim.fn.sign_define("DiagnosticSignHint", { text = "󰌵", texthl = "DiagnosticSignHint" })
end,
opts = {
close_if_last_window = true,
window = { width = "30" },
filesystem = {
follow_current_file = { enabled = true },
group_empty_dirs = true
}
}
}