Adds fish shell rc; supports fish shell in Vim

This commit is contained in:
William Carroll 2017-01-17 17:51:35 -05:00
parent 3958a7c10d
commit 8ca1874d15
3 changed files with 35 additions and 0 deletions

View file

@ -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