Skip to content

mrsavage/dotvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vim Plugins

Installation

First you need to downlaod Pathogen: http://www.vim.org/scripts/script.php?script_id=2332 Put it in your ~/.vim/autoload

Pathogen autoloads all the plugins located in .vim/bundle:

$ mkdir ~/.vim/bundle

If you use git, you can use git-submodule to get all the plugins listed below:

$ cd .vim
$ git init
$ git submodule init bundle
$ git submodule add <git url (listed below)> bundle/<plugin-name>

this should add a .gitmodules file which contains the config parts as listed below, e.g.:

[submodule "bundle/vim-surround"]
    path = bundle/vim-surround
    url = https://github.com/tpope/vim-surround.git

For more information about submodules, use:

$ git submodule --help

Make NerdTree change dir to currently opened file:

$ patch -p0 -i nerdtree.patch

Overview

  1. surround.vim: Delete/change/add parentheses/quotes/XML-tags/much more with ease
  2. fugitive.vim: Git wrapper so awesome, it should be illegal
  3. Command-T: Fast file navigation for VIM
  4. SuperTab continued.: Do all your insert-mode completion with Tab.
  5. cocoa.vim: Plugin for Cocoa/Objective-C development
  6. pythoncomplete: Python Omni Completion
  7. The NERD tree: A tree explorer plugin for navigating the filesystem
  8. EasyGrep: Fast and Easy Find and Replace Across Multiple Files
  9. repeat.vim: Use the repeat command (.) with supported plugins
  10. Align: Help folks to align text, eqns, declarations, tables, etc
  11. The NERD Commenter: A plugin that allows for easy commenting of code for many filetypes.
  12. vcscommand.vim : CVS/SVN/SVK/git/hg/bzr integration plugin
  13. colorschemes: collection of vim colorschemes
  14. pythonhelper : Displays Python class, method or function the cursor is in on the status line
  15. xmledit : A filetype plugin to help edit XML, HTML, and SGML documents
  16. pyflakes.vim : PyFlakes on-the-fly Python code checking
  17. Conque Shell : Run interactive commands inside a Vim buffer
  18. Vim JDE : Vim - Just a Development Envirement (Java/C++)
  19. pylint.vim : compiler plugin for python style checking tool

Plugins

  1. surround.vim: http://www.vim.org/scripts/script.php?script_id=1697

    [submodule "bundle/vim-surround"]

    path = bundle/vim-surround url = https://github.com/tpope/vim-surround.git

  2. fugitive.vim http://www.vim.org/scripts/script.php?script_id=2975

    [submodule "bundle/fugitive"]

    path = bundle/fugitive url = http://github.com/tpope/vim-fugitive.git

  3. command-t: http://www.vim.org/scripts/script.php?script_id=3025

    [submodule "bundle/command-t"]

    path = bundle/command-t url = git://git.wincent.com/command-t.git

  4. supertab: http://www.vim.org/scripts/script.php?script_id=1643

    [submodule "bundle/vim-supertab"]

    path = bundle/vim-supertab url = https://github.com/ervandew/supertab.git

  5. cocoa.vim: http://www.vim.org/scripts/script.php?script_id=2674

    [submodule "bundle/cocoa-vim"]

    path = bundle/cocoa-vim url = https://github.com/msanders/cocoa.vim.git

  6. pythoncomplete.vim: http://www.vim.org/scripts/script.php?script_id=1542

    [submodule "bundle/pythoncomplete"]

    path = bundle/pythoncomplete url = https://github.com/vim-scripts/pythoncomplete.git

  7. nerdtree: http://www.vim.org/scripts/script.php?script_id=1658

    [submodule "bundle/nerdtree"]

    path = bundle/nerdtree url = https://github.com/scrooloose/nerdtree.git

  8. easygrep: http://www.vim.org/scripts/script.php?script_id=2438

    [submodule "bundle/vim-easygrep"]

    path = bundle/vim-easygrep url = https://github.com/gmccreight/vim-easygrep.git

  9. repeat.vim: http://www.vim.org/scripts/script.php?script_id=2136

    [submodule "bundle/vim-repeat"]

    path = bundle/vim-repeat url = https://github.com/tpope/vim-repeat.git

  10. align: http://www.vim.org/scripts/script.php?script_id=294

    [submodule "bundle/vim-align"]

    path = bundle/vim-align url = https://github.com/tsaleh/vim-align.git

  11. nerdcommenter: http://www.vim.org/scripts/script.php?script_id=1218

    [submodule "bundle/The-NERD-Commenter"]

    path = bundle/The-NERD-Commenter url = https://github.com/vim-scripts/The-NERD-Commenter.git

  12. vcscommand: http://www.vim.org/scripts/script.php?script_id=90

    [submodule "bundle/vcscommand"]

    path = bundle/vcscommand url = https://github.com/vim-scripts/vcscommand.vim.git

# various colorschemes:

[submodule "bundle/vim-colorschemes"]
path = bundle/vim-colorschemes url = https://github.com/flazz/vim-colorschemes.git
  1. pythonhelper: http://www.vim.org/scripts/script.php?script_id=435

    [submodule "bundle/pythonhelper"]

    path = bundle/pythonhelper url = https://github.com/saghul/pythonhelper.git

  2. xmledit: http://www.vim.org/scripts/script.php?script_id=301

    [submodule "bundle/xmledit"]

    path = bundle/xmledit url = http://github.com/sukima/xmledit

  3. pyflakes.vim: http://www.vim.org/scripts/script.php?script_id=2441

    [submodule "bundle/pyflakes-vim"]

    path = bundle/pyflakes-vim url = https://github.com/kevinw/pyflakes-vim

  4. conque: http://www.vim.org/scripts/script.php?script_id=2771

    [submodule "bundle/conque-shell"]

    path = bundle/conque-shell url = https://github.com/vim-scripts/Conque-Shell.git

  5. vim-jde: http://www.vim.org/scripts/script.php?script_id=1213

    [submodule "bundle/vim-jde"]

    path = bundle/vim-jde url = https://github.com/vim-scripts/Vim-JDE.git

  6. pylint.vim: http://www.vim.org/scripts/script.php?script_id=891

    [submodule "bundle/vim-pylint"]

    path = bundle/vim-pylint url = https://github.com/rygwdn/vim-pylint.git

About

my dotvim config, forked from ramonski

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published