Skip to content

Commit

Permalink
treesitter
Browse files Browse the repository at this point in the history
  • Loading branch information
leonid-shutov committed Oct 21, 2024
1 parent 6abd6cf commit 2ba2712
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,20 @@ Plug 'crnvl96/lazydocker.nvim'
Plug 'preservim/nerdcommenter'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}

call plug#end()

lua << EOF
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
ensure_installed = {"javascript", "typescript"},
}
EOF

colorscheme github_dark_default

let g:coc_global_extensions = ['coc-eslint', 'coc-prettier', 'coc-json', 'coc-html', 'coc-css', 'coc-docker', 'coc-fzf-preview', 'coc-sql', 'coc-swagger', 'coc-tsserver']
Expand Down

0 comments on commit 2ba2712

Please sign in to comment.