Add tree sitter plugin
This commit is contained in:
parent
0fcc53b2cf
commit
a19375707d
2 changed files with 8 additions and 0 deletions
|
@ -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}}
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue