summaryrefslogtreecommitdiffstats
path: root/.vimrc
blob: d9b93b19ca3cb614d947d84b2c50007e145bac55 (plain)
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
"set tabstop=4
"set shiftwidth=4
"set expandtab
set number

set mouse=a

"set autoindent
"set vb
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE

noremap <C-left> :bprev<CR>
noremap <C-right> :bnext<CR> 

" don't remember why temporarily off
filetype off

set rtp+=~/.vim/vim4projects/git-powerline/powerline/bindings/vim

call pathogen#infect()
call pathogen#infect('~/.vim/vim4projects/{}')
call pathogen#helptags()

" NERDTree
let NERDTreeIgnore = ['\.pyc$', '\.tar\.gz$']

filetype plugin indent on
syntax on

" powerline
set laststatus=2  " Always show the statusline
set t_Co=256  " Explicitly tell vim that the terminal supports 256 colors

" tagbar
nmap <F8> :TagbarToggle<CR>
let NERDTreeIgnore = ['\.pyc$', '\.tar\.gz$']