Add coc.nvim and vimtex
This commit is contained in:
parent
51cb17efe4
commit
ea8644ddf1
1 changed files with 7 additions and 2 deletions
|
@ -30,6 +30,7 @@ call plug#begin('~/.vim/plugged')
|
|||
" AUTOCOMPLETION, FORMATTING AND LINTING
|
||||
" Main autocompletion
|
||||
"Plug 'ycm-core/YouCompleteMe'
|
||||
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
|
||||
"Auto close parens and such
|
||||
Plug 'Townk/vim-autoclose'
|
||||
" PEP8 linting for Python
|
||||
|
@ -42,8 +43,6 @@ Plug 'psf/black', { 'branch': 'stable' }
|
|||
" HIGHLIGHTING
|
||||
" Whitespace highlighting and removal
|
||||
Plug 'ntpeters/vim-better-whitespace'
|
||||
" Python IDE
|
||||
Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' }
|
||||
" C syntax highlighting
|
||||
Plug 'vim-scripts/c.vim'
|
||||
" Rust syntax highlighting
|
||||
|
@ -56,12 +55,16 @@ Plug 'vim-airline/vim-airline'
|
|||
Plug 'vim-airline/vim-airline-themes'
|
||||
|
||||
" MISC.
|
||||
" Python IDE
|
||||
Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' }
|
||||
" A tree explorer plugin
|
||||
Plug 'preservim/nerdtree'
|
||||
" A NERDTree plugin showing git status
|
||||
Plug 'Xuyuanp/nerdtree-git-plugin'
|
||||
" Display thin vertical lines at each indentation level
|
||||
Plug 'Yggdroot/indentLine'
|
||||
" VimTeX
|
||||
Plug 'lervag/vimtex'
|
||||
|
||||
call plug#end()
|
||||
" }}}
|
||||
|
@ -85,6 +88,8 @@ nmap <leader>ne :NERDTree<CR>
|
|||
|
||||
" let g:indentLine_char = '▏'
|
||||
let g:indentLine_fileType = ['html', 'htmldjango']
|
||||
|
||||
let g:tex_flavor = 'latex'
|
||||
" }}}
|
||||
" COLORS {{{
|
||||
colorscheme badwolf
|
||||
|
|
Loading…
Add table
Reference in a new issue