Added vim-dispatch

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

@ -1 +1 @@
Subproject commit c9ffbef0718a35bd30eb711456e2100e4adf79f7
Subproject commit 4c128ee2fee6d97cc5c6089e7797b4ad536de2a4

@ -0,0 +1 @@
Subproject commit 69fea418692f76058d5cd95f0a17ed6b0f5bbb77

@ -1 +1 @@
Subproject commit 93ef4c9e42cd6da4e37a935c4799dcf8e24af9b1
Subproject commit 0ae5d5ea9953d55768bede9759af636a773ce5a8

@ -1 +1 @@
Subproject commit af3c2d3f66a6c7bf200f671ee76efdbad33ce69f
Subproject commit 464aeae09bccd994a5a37ca3d25ed775f30034b6

View File

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