Last active
February 21, 2018 05:50
-
-
Save accessone67/2fd44e769e4fb751f943c0ee7cf682d0 to your computer and use it in GitHub Desktop.
Revisions
-
accessone67 renamed this gist
Feb 21, 2018 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ #!/bin/bash mkdir -p ~/.vim/autoload mkdir -p ~/.vim/bundle cd ~/.vim/autoload/ -
accessone67 created this gist
Feb 21, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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