Fixed FIlebrowser Plugin

This commit is contained in:
Norm Rasmussen
2022-11-16 17:11:48 -05:00
parent d48d729ff8
commit aa64085efe
12 changed files with 96 additions and 155 deletions

View File

@ -5,7 +5,6 @@
-- Plugin: nvim-treesitter
-- url: https://github.com/nvim-treesitter/nvim-treesitter
local status_ok, nvim_treesitter = pcall(require, 'nvim-treesitter.configs')
if not status_ok then
return
@ -18,10 +17,10 @@ nvim_treesitter.setup {
'bash', 'css', 'html', 'javascript', 'json', 'lua', 'python',
'vim', 'yaml', 'typescript',
},
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,
sync_install = true,
highlight = {
-- `false` will disable the whole extension
enable = true,
additional_vim_regex_highlighting = true,
},
}