Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 354 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 354 Bytes

vim configuration

Basic configuration for vim using vim-plug as plugin manager.

Installation

# Clone the repo and link the vimrc to the one of the repo
git clone git://github.com/jlorgal/dotvim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc

# Install the plugins
vim -E -s <<-EOF
  :source ~/.vimrc
  :PlugInstall
  :PlugClean
  :qa
EOF