Copy all of these files and directories inside the repository into ~/.vim . However, it is recommended that you use something like vundle or pathogen
For vundle:
Run the following commands:
mkdir -p ~/.vim/bundle git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle touch ~/.vimrc
Then add this to your ~/.vimrc
set nocompatible filetype off set rtp+=~/.vim/bundle/vundle/ call vundle
The next time you run vim, you can run the command :BundleInstall to install vim-fish .
If you want this to work with funced and other potential scripts that should use the fish syntax, you can add something like this to ~/.vim/ftdetect/fish.vim :
au BufNewFile,BufRead fish_funced set ft=fish
source share