Skip to content

Instantly share code, notes, and snippets.

@accessone67
Last active February 21, 2018 05:50
Show Gist options
  • Save accessone67/2fd44e769e4fb751f943c0ee7cf682d0 to your computer and use it in GitHub Desktop.
Save accessone67/2fd44e769e4fb751f943c0ee7cf682d0 to your computer and use it in GitHub Desktop.
#!/bin/bash
mkdir -p ~/.vim/autoload
mkdir -p ~/.vim/bundle
cd ~/.vim/autoload/
curl -LSso pathogen.vim https://tpo.pe/pathogen.vim
cd ../
git clone git://github.com/rodjek/vim-puppet.git bundle/puppet
git clone git://github.com/godlygeek/tabular.git bundle/tabular
git clone git://github.com/scrooloose/syntastic.git bundle/syntastic
git clone git://github.com/vim-ruby/vim-ruby.git bundle/vim-ruby
cd
echo "set backspace=indent,eol,start
syntax on
set nu
filetype plugin indent on
set tabstop=2
set shiftwidth=2
set expandtab" >> .vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment