Added vim-dispatch

This commit is contained in:
2015-08-07 14:04:59 +02:00
parent e9a18f5322
commit f6b99d0a27
5 changed files with 9 additions and 9 deletions

Submodule nvim/.nvim/plugged/tlib_vim updated: c9ffbef071...4c128ee2fe

Submodule nvim/.nvim/plugged/vim-dispatch added at 69fea41869

Submodule nvim/.nvim/plugged/vim-exchange updated: 93ef4c9e42...0ae5d5ea99

Submodule nvim/.nvim/plugged/vim-snippets updated: af3c2d3f66...464aeae09b

View File

@@ -20,13 +20,14 @@ Plug 'tomtom/tlib_vim'
Plug 'garbas/vim-snipmate' Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets' Plug 'honza/vim-snippets'
Plug 'beyondmarc/glsl.vim' Plug 'beyondmarc/glsl.vim'
Plug 'tpope/vim-dispatch'
" Plug 'Valloric/YouCompleteMe' " Plug 'Valloric/YouCompleteMe'
call plug#end() call plug#end()
let g:neomake_airline=1 let g:neomake_airline=1
" let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' } " let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' }
let g:ctrlp_custom_ignore = '\v[\/](build|bin)$' let g:ctrlp_custom_ignore = '\v[\/](build|bin|obj)$'
let delimitMate_expand_cr = 1 let delimitMate_expand_cr = 1
@@ -67,9 +68,6 @@ let g:SuperTabDefaultCompletionType = "<C-X><C-O>"
" let g:SuperTabDefaultCompletionType = "<c-n>" " let g:SuperTabDefaultCompletionType = "<c-n>"
let g:glsl_default_version = 'glsl330'
let g:glsl_file_extensions = '*.glsl,*.vsh,*.fsh'
syntax on syntax on
filetype plugin indent on filetype plugin indent on
@@ -89,7 +87,8 @@ map <silent> <S-tab> :bp<cr>
map <S-J> <pagedown> map <S-J> <pagedown>
map <S-K> <pageup> map <S-K> <pageup>
map <silent> <F9> :make<cr>:cw<cr> " map <silent> <F9> :make<cr>:cw<cr>
map <F10> :make execute<cr> map <F9> :Make<cr>
map <F10> :Make debug<cr>
map <F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR> map <F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>