diff options
Diffstat (limited to 'configs/.vimrc')
-rw-r--r-- | configs/.vimrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/.vimrc b/configs/.vimrc index 5c997fb78fa2..e7a06d70ec51 100644 --- a/configs/.vimrc +++ b/configs/.vimrc @@ -1,3 +1,9 @@ +" Set shell variable to "sh" if current shell is "fish shell" +if &shell =~# 'fish$' + set shell=sh +endif + + " -- BEGIN: Vundle config -- set nocompatible " be iMproved, required filetype off " required @@ -91,6 +97,9 @@ Plugin 'zanglg/nova.vim' " Emulates Emacs's Helm Swoop search Plugin 'pelodelfuego/vim-swoop' +" Fish Shell support +Plugin 'dag/vim-fish' + call vundle#end() " required filetype plugin indent on " required " Put your non-Plugin stuff after this line |