Added dev tools for vim
This commit is contained in:
parent
0aca630982
commit
06a3c113b2
1 changed files with 9 additions and 0 deletions
|
@ -19,6 +19,10 @@ call plug#begin('~/.vim/plugged')
|
||||||
Plug 'mileszs/ack.vim'
|
Plug 'mileszs/ack.vim'
|
||||||
Plug 'ctrlpvim/ctrlp.vim'
|
Plug 'ctrlpvim/ctrlp.vim'
|
||||||
Plug 'moll/vim-node'
|
Plug 'moll/vim-node'
|
||||||
|
Plug 'heavenshell/vim-jsdoc', {
|
||||||
|
\ 'for': ['javascript', 'javascript.jsx','typescript'],
|
||||||
|
\ 'do': 'make install'
|
||||||
|
\}
|
||||||
" Initialize plugin system
|
" Initialize plugin system
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
@ -89,3 +93,8 @@ let g:ale_fixers = {
|
||||||
let g:ale_sign_error = '❌'
|
let g:ale_sign_error = '❌'
|
||||||
let g:ale_sign_warning = '⚠️'
|
let g:ale_sign_warning = '⚠️'
|
||||||
let g:ale_fix_on_save = 1
|
let g:ale_fix_on_save = 1
|
||||||
|
augroup myTodo
|
||||||
|
autocmd!
|
||||||
|
autocmd Syntax * syntax match myTodo /\v\_.<(TODO|FIXME|INFO).*/hs=s+1 containedin=.*Comment
|
||||||
|
augroup END
|
||||||
|
highlight link myTodo Todo
|
||||||
|
|
Loading…
Reference in a new issue