-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
41 lines (31 loc) · 1009 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
" 'git clone [email protected]:kmanalo/dotfiles.git
" SETTINGS @ $HOME/dotfiles/bundle/vim-custom/plugin
let $MYVIMRC=$HOME."/dotfiles/.vimrc"
" Vundle Requires:
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
Bundle 'gmarik/vundle'
" plug-ins
Bundle 'nvie/vim-flake8'
Bundle 'git://git.code.sf.net/p/vim-latex/vim-latex'
Bundle 'ivanov/vim-ipython'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-pathogen'
Bundle 'tpope/vim-dispatch'
" my preferred settings
Bundle 'kmanalo/vim-custom'
" syntax files
Bundle 'mitsuhiko/jinja2'
Bundle 'critcel/vim-syntax'
call vundle#end()
filetype plugin indent on
source $HOME/.vim/bundle/vim-pathogen/autoload/pathogen.vim
call pathogen#infect('$HOME/dotfiles/bundle/{}')
call pathogen#helptags()
" turn syntax and filetype support back on
syntax on
" scripts have been scrapped but they can be recovered
" e.g. 'git checkout fac7649 -- scripts'