My personal vim config. Hosted here so that I can copy and synchronize it easily onto new devices
:echo has("lua")
must return 1
. If not, install a vim version with Lua supports:
apt install vim vim-nox
brew install vim --with-lua
Make sure /usr/local/bin
is in your $PATH
before /usr/bin
.
In your .bash_profile
/ .zshrc
add: export 'EDITOR=/usr/local/bin/vim'
.
git clone https://github.com/julienschmidt/vim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
cd ~/.vim
git submodule update --init
brew install ctags
git submodule foreach git pull origin master