diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 9925fb8..80f9e62 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -11,6 +11,19 @@ Plug 'NLKNguyen/papercolor-theme' Plug 'fatih/vim-go' Plug 'neoclide/coc.nvim', {'branch': 'master', 'do': 'yarn install --frozen-lockfile'} +" polyglot +Plug 'sheerun/vim-polyglot' + +" Typescript lsp +Plug 'neoclide/coc-tsserver' + +" treesitter +Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} + +" FZF integration with vim +Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } +Plug 'junegunn/fzf.vim' + call plug#end() " colors @@ -47,6 +60,52 @@ set relativenumber "relative line numbers set colorcolumn=100 "display a colored column at 100 chars highlight ColorColumn ctermbg=0 guibg=morning +" ------------------------------------------------------------------------------------------------- +" treesitter settings +" +" ------------------------------------------------------------------------------------------------- + +" Syntax highlighting +lua <