Change plugin order because of compatibility issues

This commit is contained in:
David Holland 2019-09-21 01:50:58 +02:00
parent 7cf679b065
commit 584b5fb7df
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
1 changed files with 14 additions and 1 deletions

View File

@ -128,7 +128,6 @@ endif
" ====================================
Plug 'ap/vim-buftabline'
Plug 'scrooloose/nerdtree'
Plug 'DustVoice/vim-indentguides'
Plug 'qpkorr/vim-bufkill'
" ====================================
@ -148,6 +147,8 @@ Plug 'ARM9/arm-syntax-vim'
Plug 'philj56/vim-asm-indent'
Plug 'DustVoice/vim-indentguides'
if g:use_clang_format==1
Plug 'rhysd/vim-clang-format'
endif
@ -267,6 +268,18 @@ if g:use_clang_format==1
endif
" ====================================
" ====================================
" arm-assembly =======================
" ====================================
function! SetupArm()
execute('set filetype=arm')
execute('IndentGuidesToggle')
execute('IndentGuidesToggle')
endfunction
au BufNewFile,BufRead *.s,*.S call SetupArm() " arm = armv6/7
" ====================================
" ====================================
" Indentguides config ================
" ====================================