Add tree sitter plugin

This commit is contained in:
Yorick Barbanneau 2022-01-04 01:22:12 +01:00
parent 0fcc53b2cf
commit a19375707d
2 changed files with 8 additions and 0 deletions

View file

@ -24,3 +24,7 @@ vim.g['grammalecte_cli_py'] = '/usr/bin/grammalecte-cli'
-- Deoplete
vim.g['deoplete#enable_at_startup'] = 1
-- Tree sitter
local ts = require 'nvim-treesitter.configs'
ts.setup {ensure_installed = 'maintained', highlight = {enable = true}}

View file

@ -21,4 +21,8 @@ paq {
'zchee/deoplete-jedi';
-- Grammalecte
'dpelle/vim-Grammalecte';
-- need to install g++ package on Debian
-- for tree sitter plugins
'nvim-treesitter/nvim-treesitter'
}