refactored plugins

This commit is contained in:
iris committed 2022-08-02 21:03:40 -04:00
1 parent f5b6ec34ad
commit c8bfa09562
9 files changed
+217 -209

No files matched your search

+15
View File
@@ -0,0 +1,15 @@
return function(use)
use {
'nvim-treesitter/nvim-treesitter',
run = function()
require 'nvim-treesitter.install'.update {
with_sync = true
}
end,
config = function()
require 'nvim-treesitter.configs'.setup {
highlight = { enable = true }
}
end,
}
end