Convert Neovim configuration to module

This commit is contained in:
Yorick Barbanneau 2023-12-30 13:04:55 +01:00
parent f65ec32010
commit a0e5672290
13 changed files with 130 additions and 123 deletions

View file

@ -0,0 +1,10 @@
-- Tree sitter
--
local ts = require 'nvim-treesitter.configs'
ts.setup {
sync_install = false,
highlight = {
enable = true,
}
}