From 584b5fb7df5f360d9014effec4016cb4e6c937b6 Mon Sep 17 00:00:00 2001 From: David Holland Date: Sat, 21 Sep 2019 01:50:58 +0200 Subject: [PATCH] Change plugin order because of compatibility issues --- init.vim | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index cc31a85..9c7a714 100644 --- a/init.vim +++ b/init.vim @@ -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 ================ " ====================================