https://github.com/bulkan/dotvim
Vim config
https://github.com/bulkan/dotvim
Last synced: 12 months ago
JSON representation
Vim config
- Host: GitHub
- URL: https://github.com/bulkan/dotvim
- Owner: bulkan
- Created: 2011-08-10T06:07:26.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2016-02-18T12:23:57.000Z (over 10 years ago)
- Last Synced: 2025-06-15T05:39:18.958Z (about 1 year ago)
- Language: VimL
- Homepage:
- Size: 354 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vim settings
These are settings for ```vim``` which I mainly use for editing python code in.
I've installed the following plugins
1. L9, which provides some utility functions and commands for programming in Vim
1. tpope/vim-fugitive, git support
1. hallison/vim-markdown, Markdown support
1. ervandew/supertab, Tab completion
1. FuzzyFinder
1. scrooloose/nerdtree
1. scrooloose/nerdcommenter
1. scrooloose/nerdtree, file browser support
1. kien/ctrlp.vim, opens files
1. leshill/vim-json, json support
1. vim-ruby/vim-ruby, Ruby
1. pangloss/vim-javascript, Javascript
1. itspriddle/vim-jquery, Jquery support
1. python.vim, Python
1. django.vim & django_templates.vim
1. nvie/vim-flake8, flake8 python linter
## Installation instructions
1. Backup
You problably should back up your current settings some where and delete the current folder first, e.g.
```sh
mv ~./vim ~/.vim_back_up
```
2. Download the code
```sh
git clone git://github.com/bulkan/dotvim.git ~/.vim
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
```
3. Optionally
cd ~/.vim; sudo pip install -r requirements.txt
4. Create a symlink, if it doesn't already exist
```sh
ln -s ~/.vim/vimrc ~/.vimrc
```
5. Install 3rd party plugins
`vim +BundleInstall`