Added base setup

This commit is contained in:
2022-10-09 19:20:47 +02:00
commit 1afab44385
7 changed files with 464 additions and 0 deletions

8
lua/plugins/neo-tree.lua Normal file
View File

@@ -0,0 +1,8 @@
return {
cmd = "Neotree",
config = function()
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
require("neo-tree").setup({filesystem = {follow_current_file = true}})
end,
}