chore(nvim): move plugins into after plugin folder

This commit is contained in:
Stefan Imhoff
2022-08-10 11:03:55 +02:00
parent 77d87fd379
commit ef43478900
32 changed files with 41 additions and 68 deletions

View File

@@ -0,0 +1,9 @@
-- nvim-tree.lua https://github.com/kyazdani42/nvim-tree.lua
local status_ok, nvim_tree = pcall(require, "nvim-tree")
if not status_ok then
return
end
nvim_tree.setup({
sync_root_with_cwd = true,
})