Nvim: Configure plugins in after directory

Switch from fzf to telescope and filesystem to defx
This commit is contained in:
Robert Kmieć
2021-07-26 00:27:45 +02:00
parent e9149f0de8
commit 4f3663d0eb
18 changed files with 324 additions and 150 deletions

View File

@@ -0,0 +1,17 @@
" Tree-sitter configuration
lua <<EOF
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
},
ensure_installed = {
"bash",
"c",
"cmake",
"cpp",
"fish",
"lua",
"rust",
}
}
EOF