Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created August 2, 2013 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobSpectre/6137085 to your computer and use it in GitHub Desktop.
Save RobSpectre/6137085 to your computer and use it in GitHub Desktop.
/srv/salt/vim/init.sls
vim-deps:
pkg.installed:
- names:
- exuberant-ctags
- require_in:
- pkg: vim
vim-vundle:
git.latest:
- name: git://github.com/gmarik/vundle.git
- target: /home/rspectre/.vim/bundle/vundle
- submodules: true
vim:
require:
- pkg: vim-deps
pkg:
- installed
/etc/vimrc:
file.managed:
source: salt://vim/vimrc
mode: 644
user: root
group: root
/home/rspectre/.vimrc:
file.symlink:
- target: /home/rspectre/.vim/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment