Skip to content

Instantly share code, notes, and snippets.

@sugarfillet
Forked from taylor/README.mkd
Last active March 10, 2017 12:00
Show Gist options
  • Select an option

  • Save sugarfillet/db70578ec01a7f798946abf4d3472c98 to your computer and use it in GitHub Desktop.

Select an option

Save sugarfillet/db70578ec01a7f798946abf4d3472c98 to your computer and use it in GitHub Desktop.

Revisions

  1. sugarfillet revised this gist Mar 10, 2017. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions vimrc
    Original 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>
    " ---------------------------------------------------------------------------
  2. @taylor taylor revised this gist Apr 27, 2012. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion README.mkd
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    # Simple vim setup with some essential plugins
    # 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
  3. @taylor taylor revised this gist Apr 27, 2012. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions README.mkd
    Original 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
    * 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:
    ## Install Instructions:

    ```
    mkdir -p ~/.vim/autoload ~/.vim/bundle
  4. @taylor taylor revised this gist Apr 27, 2012. 1 changed file with 18 additions and 0 deletions.
    18 changes: 18 additions & 0 deletions README.mkd
    Original 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
    ```
  5. @taylor taylor revised this gist Apr 27, 2012. No changes.
  6. @taylor taylor revised this gist Apr 27, 2012. 1 changed file with 7 additions and 0 deletions.
    7 changes: 7 additions & 0 deletions install
    Original 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
  7. @taylor taylor revised this gist Apr 27, 2012. No changes.
  8. @taylor taylor revised this gist Apr 24, 2012. 1 changed file with 12 additions and 3 deletions.
    15 changes: 12 additions & 3 deletions vimrc
    Original 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
    "
    " # 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

    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
    let Tlist_File_Fold_Auto_Close = 1
    nmap <LocalLeader>tt :Tlist<cr>
  9. @taylor taylor revised this gist Apr 24, 2012. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion vimrc
    Original 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

    silent! call pathogen#infect()
    syntax on
    filetype plugin indent on

  10. @taylor taylor revised this gist Apr 24, 2012. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions vimrc
    Original 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
  11. @taylor taylor revised this gist Apr 24, 2012. 1 changed file with 15 additions and 24 deletions.
    39 changes: 15 additions & 24 deletions vimrc
    Original file line number Diff line number Diff line change
    @@ -1,17 +1,22 @@
    " VIM SETUP
    "
    " ------------------------------
    " === MUST HAVE ===
    " 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
    " 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

    " 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

    " pathogen setup -- put plugins in ~/.vim/depot
    silent! call pathogen#infect("depot")
    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

    " ------------------------------
    " === 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>
    let Tlist_File_Fold_Auto_Close = 1
  12. @taylor taylor created this gist Mar 27, 2012.
    43 changes: 43 additions & 0 deletions vimrc
    Original 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>