README.md (582B) [raw]
1 # dotvim 2 3 My personal Vim configuration. 4 5 ## Install 6 7 Mac/Linux: 8 9 ```sh 10 git clone --recurse-submodules https://github.com/akarle/dotfiles ~/dotfiles 11 ln -s ~/dotfiles/vim ~/.vim 12 ``` 13 14 Windows: 15 16 If you can't figure out how to get symlinks to work (or they don't work, I never 17 understood them on Windows), set up a minimal vimrc that uses ~/dotfiles/vim as 18 the ~/vimfiles: 19 20 ```sh 21 git clone --recurse-submodules https://github.com/akarle/dotfiles ~/dotfiles 22 cat <<EOM > ~/_vimrc 23 set rtp ^= ~/dotfiles/vim 24 set rtp += ~/dotfiles/vim/after 25 set pp = &rtp 26 source ~/dotfiles/vim/vimrc 27 EOM 28 ```