-
Notifications
You must be signed in to change notification settings - Fork 2
/
init.vim
24 lines (20 loc) · 853 Bytes
/
init.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" order sometimes matters here, be aware of that
source $HOME/.config/nvim/plugins.vim
source $HOME/.config/nvim/general.vim
source $HOME/.config/nvim/filetypes.vim
source $HOME/.config/nvim/plugins/ultisnips.vim
source $HOME/.config/nvim/plugins/ncm2.vim
source $HOME/.config/nvim/plugins/phpactor.vim
source $HOME/.config/nvim/plugins/ctrlp.vim
source $HOME/.config/nvim/plugins/nerdtree.vim
source $HOME/.config/nvim/plugins/vim-test.vim
source $HOME/.config/nvim/plugins/ale.vim
" Misc plugin config - no need for a dedicated file right now for these:
" vim-signify
" only look for git (not vcs, mercurial, etc)
let g:signify_vcs_list = ['git']
" airline (status bar)
let g:airline_powerline_fonts = 1
" pdv (docblock generation)
let g:pdv_template_dir = $HOME ."/nvim/plugged/pdv/templates_snip"
nnoremap <C-p> :call pdv#DocumentWithSnip()<CR>