A Good Vimrc (2014)
dougblack.io
A Good Vimrc (2014)
1–10 of 56 posts
Re: A Good Vimrc (2014)
#2Re: A Good Vimrc (2014)
#3Now just add the section about uploading it to your GitHub so all new servers get setup with a simple git clone, and any new changes can be propogated around with push/pull.
git clone https://github.com/me/my-dotfile-repo
cd my-dotfile-repo
stow --target=$HOME zsh
stow --target=$HOME vim
...
Elegant, cross-platform, easy to remember.[0]: http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to...
Re: A Good Vimrc (2014)
#4Now just add the section about uploading it to your GitHub so all new servers get setup with a simple git clone, and any new changes can be propogated around with push/pull.
Re: A Good Vimrc (2014)
#5Actually true for most human-configurable setting files.
Re: A Good Vimrc (2014)
#6> Don't put any lines in your vimrc that you don't understand. Actually true for most human-configurable setting files.
Re: A Good Vimrc (2014)
#7The thing that gets me is vim's lack for auto completion for stuff like scala. Has anyone managed to set that up?
Re: A Good Vimrc (2014)
#8Now just add the section about uploading it to your GitHub so all new servers get setup with a simple git clone, and any new changes can be propogated around with push/pull.
I keep my dotfiles repo on a vps where I manage the repos with gitosis.
Re: A Good Vimrc (2014)
#9Now just add the section about uploading it to your GitHub so all new servers get setup with a simple git clone, and any new changes can be propogated around with push/pull.
For anyone interested in this topic, [0] contains the best setup I've found for storing dotfiles in a git repo, then linking them with GNU Stow. Steps are just: git clone https://github.com/me/my-dotfile-repo cd my-dotfile-repo stow --target=$HOME zsh stow --target=$HOME vim ... Elegant, cross-platform, easy to remember. [0]: http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to...
Re: A Good Vimrc (2014)
#10Good write up. Ive been looking into Now this might sound like heresy but I've been considering moving to emacs lately and using evil mode. The thing that gets me is vim's lack for auto completion for stuff like scala. Has anyone managed to set that up?