summaryrefslogtreecommitdiffstats
path: root/.vimrc
blob: 64b4dbc8912dce2ca2b6d7f37287ef0a84d07b9d (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
" bnewbold's .vimrc
" circa 04/2006

:filetype plugin on

if has('syntax') && (&t_Co > 2)
    syntax on
endif

set history=50
set wildmode=list:longest,full
set showmode
set showcmd
set shiftwidth=4
set tabstop=4
set shiftround
set expandtab
set autoindent
set hidden

" vtreeexplore
let treeExplVertical=1
let treeExplWinSize=30
let treeExplDirSort=1
let treeExplNoList=1
:nmap <F2> :VSTreeExplore<cr>
let g:buftabs_in_statusline=1
let g:buftabs_only_basename=1

" better vertical split style
hi VertSplit cterm=none ctermfg=LightGray term=none gui=none

" firefox style ctrl-tabbing with buffers
noremap <C-tab> :bprev<CR> 
noremap <C-S-tab> :bnext<CR> 
" needed for in xterm with remaping... ugh.
:nmap <Esc>[27;6;9~ :bprev<CR>
:nmap <Esc>[27;5;9~ :bnext<CR>
:map <Esc>[27;6;9~ :bprev<CR>
:map <Esc>[27;5;9~ :bnext<CR>
" and for tabbing
:nmap <C-left> :tabN<CR>
:nmap <C-right> :tabn<CR>
:map <C-left> :tabN<CR>
:map <C-right> :tabn<CR>

" cscope quicklisting
set cscopequickfix=s-,c-,d-,i-,t-,e-

" Searching stuff
set incsearch
set ignorecase
set smartcase

autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class

" for Project Fortress
au BufNewFile,BufRead *.fsi,*.fss set ft=fortress

" for previewing reStructured text (.rst) in firefox
:command Rst :!rst2html.py "%" > /tmp/rstprev.html && firefox file:///tmp/rstprev.html
:nnoremap <C-p><C-r> :Rst<CR>