-
-
Save sugarfillet/db70578ec01a7f798946abf4d3472c98 to your computer and use it in GitHub Desktop.
Revisions
-
sugarfillet revised this gist
Mar 10, 2017 . 1 changed file with 4 additions 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 @@ -32,7 +32,11 @@ let maplocalleader = "," """"" Settings for NERDTree let NERDTreeIgnore=['\~$', '^\.git', '\.swp$', '\.DS_Store$'] let NERDTreeQuitOnOpen = 1 let NERDTreeShowHidden=1 let NERDTreeMinimalUI = 1 let NERDTreeDirArrows = 1 nmap <LocalLeader>nn :NERDTreeToggle<cr> " --------------------------------------------------------------------------- -
taylor revised this gist
Apr 27, 2012 . 1 changed file with 3 additions and 1 deletion.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,4 +1,6 @@ # Quick Vim Setup *Simple vim setup with some essential plugins* * pathogen - https://github.com/tpope/vim-pathogen * taglist.vim - http://www.vim.org/scripts/script.php?script_id=273 -
taylor revised this gist
Apr 27, 2012 . 1 changed file with 5 additions and 5 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,11 +1,11 @@ # Simple vim setup with some essential plugins * pathogen - https://github.com/tpope/vim-pathogen * taglist.vim - http://www.vim.org/scripts/script.php?script_id=273 * NERD Tree - http://www.vim.org/scripts/script.php?script_id=1658 * fugitive.vim -- http://www.vim.org/scripts/script.php?script_id=2975 ## Install Instructions: ``` mkdir -p ~/.vim/autoload ~/.vim/bundle -
taylor revised this gist
Apr 27, 2012 . 1 changed file with 18 additions 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 @@ -0,0 +1,18 @@ # Simple vim setup with some essential plugins pathogen - https://github.com/tpope/vim-pathogen taglist.vim - http://www.vim.org/scripts/script.php?script_id=273 NERD Tree - http://www.vim.org/scripts/script.php?script_id=1658 fugitive.vim -- http://www.vim.org/scripts/script.php?script_id=2975 ## INSTALL INSTRUCTIONS: ``` mkdir -p ~/.vim/autoload ~/.vim/bundle cd ~/.vim/bundle git clone https://github.com/tpope/vim-pathogen.git git clone https://github.com/scrooloose/nerdtree.git git clone https://github.com/tpope/vim-fugitive.git git clone https://github.com/vim-scripts/taglist.vim.git cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim ``` -
taylor revised this gist
Apr 27, 2012 . No changes.There are no files selected for viewing
-
taylor revised this gist
Apr 27, 2012 . 1 changed file with 7 additions 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 @@ -0,0 +1,7 @@ mkdir -p ~/.vim/autoload ~/.vim/bundle cd ~/.vim/bundle git clone https://github.com/tpope/vim-pathogen.git git clone https://github.com/scrooloose/nerdtree.git git clone https://github.com/tpope/vim-fugitive.git git clone https://github.com/vim-scripts/taglist.vim.git cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim -
taylor revised this gist
Apr 27, 2012 . No changes.There are no files selected for viewing
-
taylor revised this gist
Apr 24, 2012 . 1 changed file with 12 additions and 3 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 @@ -13,15 +13,23 @@ " git clone https://github.com/tpope/vim-fugitive.git " git clone https://github.com/vim-scripts/taglist.vim.git " cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim if filereadable(expand("$HOME/.vim/autoload/pathogen.vim")) silent! call pathogen#infect() endif syntax on filetype plugin indent on set timeoutlen=450 " Time to wait after ESC (default causes an annoying delay) set ts=2 set sw=2 set expandtab " Don't use Ex mode, use Q for formatting map Q gq let maplocalleader = "," """"" Settings for NERDTree let NERDTreeIgnore=['\~$', '^\.git', '\.swp$', '\.DS_Store$'] let NERDTreeShowHidden=1 @@ -35,4 +43,5 @@ let Tlist_Enable_Fold_Column=0 let Tlist_Compact_Format=0 let Tlist_WinWidth=28 let Tlist_Exit_OnlyWindow=1 let Tlist_File_Fold_Auto_Close = 1 nmap <LocalLeader>tt :Tlist<cr> -
taylor revised this gist
Apr 24, 2012 . 1 changed file with 3 additions and 1 deletion.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 @@ -15,8 +15,10 @@ " cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim " " # make a ~/.vimrc with this file :) if filereadable(expand("$HOME/.vim/autoload/pathogen.vim")) silent! call pathogen#infect() endif syntax on filetype plugin indent on -
taylor revised this gist
Apr 24, 2012 . 1 changed file with 2 additions 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 @@ -13,6 +13,8 @@ " git clone https://github.com/tpope/vim-fugitive.git " git clone https://github.com/vim-scripts/taglist.vim.git " cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim " " # make a ~/.vimrc with this file :) silent! call pathogen#infect() syntax on -
taylor revised this gist
Apr 24, 2012 . 1 changed file with 15 additions and 24 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,17 +1,22 @@ " Simple vim setup with some essential plugins " " pathogen - https://github.com/tpope/vim-pathogen " taglist.vim - http://www.vim.org/scripts/script.php?script_id=273 " NERD Tree - http://www.vim.org/scripts/script.php?script_id=1658 " fugitive.vim -- http://www.vim.org/scripts/script.php?script_id=2975 " " INSTALL INSTRUCTIONS: " mkdir -p ~/.vim/autoload ~/.vim/bundle " cd ~/.vim/bundle " git clone https://github.com/tpope/vim-pathogen.git " git clone https://github.com/scrooloose/nerdtree.git " git clone https://github.com/tpope/vim-fugitive.git " git clone https://github.com/vim-scripts/taglist.vim.git " cd ~/.vim/autoload ; ln -s ../bundle/vim-pathogen/autoload/pathogen.vim silent! call pathogen#infect() syntax on filetype plugin indent on """"" Settings for NERDTree let NERDTreeIgnore=['\~$', '^\.git', '\.swp$', '\.DS_Store$'] @@ -26,18 +31,4 @@ let Tlist_Enable_Fold_Column=0 let Tlist_Compact_Format=0 let Tlist_WinWidth=28 let Tlist_Exit_OnlyWindow=1 let Tlist_File_Fold_Auto_Close = 1 -
taylor created this gist
Mar 27, 2012 .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,43 @@ " VIM SETUP " " ------------------------------ " === MUST HAVE === " " pathogen - https://github.com/tpope/vim-pathogen " taglist.vim - http://www.vim.org/scripts/script.php?script_id=273 " NERD Tree - http://www.vim.org/scripts/script.php?script_id=1658 " tComment - Add comments to code - http://www.vim.org/scripts/script.php?script_id=1173 " SuperTab - http://www.vim.org/scripts/script.php?script_id=1643 " pathogen setup -- put plugins in ~/.vim/depot silent! call pathogen#infect("depot") """"" Settings for NERDTree let NERDTreeIgnore=['\~$', '^\.git', '\.swp$', '\.DS_Store$'] let NERDTreeShowHidden=1 nmap <LocalLeader>nn :NERDTreeToggle<cr> " --------------------------------------------------------------------------- """"" Settings for taglist.vim let Tlist_Use_Right_Window=1 let Tlist_Auto_Open=0 let Tlist_Enable_Fold_Column=0 let Tlist_Compact_Format=0 let Tlist_WinWidth=28 let Tlist_Exit_OnlyWindow=1 let Tlist_File_Fold_Auto_Close = 1 " ------------------------------ " === Extra == " " FuzzyFinder -- http://www.vim.org/scripts/script.php?script_id=1984 " L9 : Vim-script library -- http://www.vim.org/scripts/script.php?script_id=3252 " FuzzyFinder_Textmate - http://weblog.jamisbuck.org/2008/10/10/coming-home-to-vim " Gist.vim - http://www.vim.org/scripts/script.php?script_id=2423 " fugitive.vim -- http://www.vim.org/scripts/script.php?script_id=2975 " solarized colorscheme -- http://ethanschoonover.com/solarized " ZoomWin - http://vim.sourceforge.net/scripts/download_script.php?src_id=9865 " ZoomWin map " nmap <LocalLeader>zz :ZoomWin<cr>