diff options
author | Teddy Wing | 2014-04-20 16:22:33 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-20 16:22:33 -0400 |
commit | 413aaec42897924d649ddbad2671c9dce8c87bd9 (patch) | |
tree | 203db935470b264bd0d66adf85ceb3710bc9725c /README.md | |
parent | 31c5b7312ef1eb2856e460e0a3a618829abb8fad (diff) | |
download | dotvim-413aaec42897924d649ddbad2671c9dce8c87bd9.tar.bz2 |
Add README and LICENSE
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..7d4dcd2 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +.vim +==== + +My personal vim config. Includes various mappings and plugins. Plugins are loaded with [pathogen.vim](https://github.com/tpope/vim-pathogen). + +Feel free to take a look and copy what you like. + + +## Installation +1. Backup your `.vimrc` and `.vim` directory +2. Clone into your `~/.vim` directory +3. Run `git submodule init && git submodule update` +4. Link `.vimrc` to `~/.vim/vimrc` + + ln -s .vim/vimrc .vimrc + + +## Dependencies +Currently requires: + +* `ack`: for more intelligent project searching + + +## Plugins +* [pathogen.vim](https://github.com/tpope/vim-pathogen): plugin management +* [Command-T](https://github.com/wincent/Command-T): easy file loading +* [NerdTree](https://github.com/scrooloose/nerdtree): pleasant file browser +* [commentary.vim](https://github.com/tpope/vim-commentary): easy code commenting +* [PreserveNoEOL](https://github.com/vim-scripts/PreserveNoEOL/): preserve EOLs +* [EasyGrep](https://github.com/vim-scripts/EasyGrep): easy find and replace in project + + +Disabled plugins: + +* [TabBar](https://github.com/vim-scripts/TabBar): show buffers in tabs + + +## License +Licensed under the MIT license. See the included LICENSE file. |