소스 검색

Disable security prompt when loading local vimrc

Sorry security, but it was too cumbersome.
DricomDragon 4 년 전
부모
커밋
4111a842fb
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Install/Templates/home/vim/vimrc

+ 3 - 0
Install/Templates/home/vim/vimrc

@@ -18,6 +18,9 @@ Plugin 'tpope/vim-repeat' " Allow custom commands from vim-unimpaired to be repe
 Plugin 'embear/vim-localvimrc' " Allow Vim tweak per project, useful for coding conventions
 call vundle#end()
 
+" Tweak embear/vim-localvimrc
+let g:localvimrc_ask=0
+
 " Make hard tab look like 4 spaces tabs
 set shiftwidth=4
 set tabstop=4