~slestak989/+junk/npg-vimrc

« back to all changes in this revision

Viewing changes to vimrc

  • Committer: Steve Romanow
  • Date: 2013-04-11 13:44:00 UTC
  • Revision ID: sromanow@novapointgroup.com-20130411134400-582lzb43k07z1kul
get syntax hilighting workign in debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
     set nocompatible               " be iMproved
2
2
     filetype off                   " required!
 
3
     syntax on
3
4
 
4
5
     set rtp+=~/.vim/bundle/vundle/
5
6
     call vundle#rc()
14
15
     Bundle 'Lokaltog/vim-easymotion'
15
16
     Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
16
17
     Bundle 'klen/python-mode'
 
18
     Bundle 'flazz/vim-colorschemes'
 
19
 
17
20
     " vim-scripts repos
18
21
     Bundle 'tComment'
19
22
     "Bundle 'L9'
20
23
     "Bundle 'FuzzyFinder'
 
24
     "
21
25
     " non github repos
22
26
     "Bundle 'git://git.wincent.com/command-t.git'
23
27
     " ...
41
45
     let g:pymode_folding = 0
42
46
     let g:pymode_virtualenv = 0
43
47
 
 
48
     colorscheme desert256
 
49