1
0

fish compatibility for vim

This commit is contained in:
Noah 2014-03-06 13:36:24 -08:00
parent 8b5a49519a
commit 69b5dcb405

View File

@ -127,3 +127,11 @@ let perl_extended_vars = 1
" expand tabs for python code " expand tabs for python code
autocmd BufRead,BufNewFile *.py set expandtab autocmd BufRead,BufNewFile *.py set expandtab
"""""""""""""""""""""""""""""""""
""" Compatibility with fish shell
"""""""""""""""""""""""""""""""""
" https://www.mail-archive.com/fish-users@lists.sourceforge.net/msg01425.html
if $SHELL =~ 'bin/fish'
set shell=/bin/bash
endif