.config/nvim/lua/plugins/filetype.lua

changeset 1057
3c42989e695b
parent 1027
823290a8e710
child 1058
c8754b0414b9
equal deleted inserted replaced
1056:235dd39d6629 1057:3c42989e695b
5 g.perl_sub_signatures = 1 5 g.perl_sub_signatures = 1
6 g.perl_sync_dist = 300 6 g.perl_sync_dist = 300
7 g.perl_compiler_force_warnings = 0 7 g.perl_compiler_force_warnings = 0
8 8
9 return { 9 return {
10 {
11 'nvim-treesitter/nvim-treesitter',
12 build = function()
13 require('nvim-treesitter.install').update({ with_sync = true })
14 end,
15 config = function()
16 require('nvim-treesitter.configs').setup({
17 highlight = { enable = true },
18 indent = { enable = true },
19 ensure_installed = {
20 'eex',
21 'elixir',
22 'heex',
23 'surface',
24 },
25 })
26 end,
27 },
10 'Shougo/vinarise.vim', 28 'Shougo/vinarise.vim',
11 'asciidoc/vim-asciidoc', 29 'asciidoc/vim-asciidoc',
12 {'vim-perl/vim-perl', branch = 'dev'}, 30 {'vim-perl/vim-perl', branch = 'dev'},
13 'yko/mojo.vim', 31 'yko/mojo.vim',
14 } 32 }

mercurial