diff options
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. |