about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2017-07-30T02·34-0400
committerWilliam Carroll <wpcarro@gmail.com>2017-07-30T02·34-0400
commita5d8c0d3d03f9f98d49441cf5aba3907eb3fa46c (patch)
tree52ea284ecb333b888250acfb3a0c1831e84ef349 /configs
parent6b31bc90917777f34832884992bf547a288a8a4f (diff)
Removes vim support for Fish shell
Diffstat (limited to 'configs')
-rw-r--r--configs/shared/.vimrc9
1 files changed, 1 insertions, 8 deletions
diff --git a/configs/shared/.vimrc b/configs/shared/.vimrc
index e0476e3f12d1..b54ef3056df2 100644
--- a/configs/shared/.vimrc
+++ b/configs/shared/.vimrc
@@ -1,9 +1,3 @@
-" 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
@@ -378,7 +372,7 @@ nnoremap <Tab> :1bnext<CR>
 nnoremap <S-Tab> :1bprevious<CR>
 
 
-" make Y do what is intuitive given: 
+" make Y do what is intuitive given:
 "   D: deletes until EOL
 "   C: changes until EOL
 "   Y: (should) yank until EOL
@@ -541,4 +535,3 @@ fun! CreateNonExistingDirsAndFile()
   " Write the buffer to the recently created file.
   w
 endfun
-