1
0
Fork 0

nvim: just install all treesitter language modules

This commit is contained in:
tastytea 2022-08-16 01:28:48 +02:00
parent 8ef5508e21
commit 79297f7076
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 5 deletions

View File

@ -1,15 +1,11 @@
require('my/plugins')
require'nvim-treesitter.configs'.setup {
ensure_installed = 'all',
highlight = {
enable = true,
additional_vim_regex_highlighting = { 'org' }
},
ensure_installed = {
'org', 'markdown', 'markdown_inline', 'html', 'css',
'cpp', 'c', 'lua', 'bash', 'javascript', 'typescript',
'comment', 'cmake', 'make', 'json', 'json5',
},
}
require('orgmode').setup{}