update vim plugins, add vim-fish

This commit is contained in:
Ben Harris 2019-10-23 16:55:44 -04:00
parent 4da01f4b90
commit 756dbd8397
8 changed files with 27 additions and 3 deletions

3
.gitmodules vendored
View File

@ -23,3 +23,6 @@
[submodule "vim/.vim/bundle/vim-lastplace"]
path = vim/.vim/bundle/vim-lastplace
url = https://github.com/farmergreg/vim-lastplace
[submodule "vim/.vim/bundle/vim-fish"]
path = vim/.vim/bundle/vim-fish
url = https://github.com/dag/vim-fish

View File

@ -0,0 +1,6 @@
function backupstatus
ssh rsync quota
for bkp in (ssh rsync ls)
ssh rsync du -sh $bkp
end
end

@ -1 +1 @@
Subproject commit 141d9d32a9fb58fe474fcc89cd7221eb2dd57b3a
Subproject commit 62b68aecec2de531bc3978bfb9c07d3b6759ce0e

@ -0,0 +1 @@
Subproject commit 50b95cbbcd09c046121367d49039710e9dc9c15f

@ -1 +1 @@
Subproject commit b97a9abe29c39c4e1a45ae199dbb470df362f538
Subproject commit b09c5d2523f9964add241a04862c2f8bbd7d428f

@ -1 +1 @@
Subproject commit e929cb8b868aba97331231ece6f9f3e1204babea
Subproject commit 5c73edb3c2fd8794661d7c7ac72eed1fc9d36761

View File

@ -0,0 +1,9 @@
" set up :make to use fish for syntax checking
compiler fish
" set this to have long lines wrap inside comments
setlocal textwidth=79
" enable folding of block structures in fish
setlocal foldmethod=expr

View File

@ -1,3 +1,8 @@
" posix compatibility
if &shell =~# 'fish$'
set shell=sh
endif
filetype plugin indent on
syntax enable