]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .vimrc
.vimrc: Easier buffer navigation
[dotfiles.git] / .vimrc
1 " ---------------------------------------------------------------------------
2 " General
3 " ---------------------------------------------------------------------------
4
5 set nocompatible " essential
6 set history=1000 " lots of command line history
7 set confirm " error files / jumping
8 set fileformats=unix,dos,mac " support these files
9 set iskeyword+=_,$,@,%,#,- " none word dividers
10 set viminfo='1000,f1,:100,@100,/20
11 set modeline " make sure modeline support is enabled
12 set autoread " reload files (no local changes only)
13
14 " ---------------------------------------------------------------------------
15 " Pathogen Init (Bundles)
16 " ---------------------------------------------------------------------------
17 filetype off
18 call pathogen#infect()
19 call pathogen#helptags()
20 filetype plugin indent on " enable plugins, detection and indenting in one step
21
22 " ---------------------------------------------------------------------------
23 " Colors / Theme
24 " ---------------------------------------------------------------------------
25
26 if &t_Co > 2 || has("gui_running")
27 if has("terminfo")
28 set t_Co=16
29 set t_AB=\e[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm
30 set t_AF=\e[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm
31 else
32 set t_Co=16
33 set t_Sf=\e[3%dm
34 set t_Sb=\e[4%dm
35 endif
36
37 set background=dark " dark background
38 syntax enable " syntax highligting
39 set hlsearch " highlight all search matches
40 " Press <Space> to turn off highlighting and clear any message already displayed.
41 nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
42
43 " Define to-do color(s)
44 if !exists("autocmd_colorscheme_loaded")
45 let autocmd_colorscheme_loaded = 1
46 autocmd ColorScheme * highlight TodoRed ctermbg=LightRed guibg=#E01B1B ctermfg=White guifg=#002b37
47 endif
48
49 " Solarized color-scheme
50 let g:solarized_termtrans=1 " Always use terminal's default bg color
51 colorscheme solarized
52
53 " Auto-highlight TODO's
54 if has("autocmd")
55 if v:version > 701
56 autocmd Syntax * call matchadd('TodoRed', '\W\zs\(TODO\)')
57 endif
58 endif
59 endif
60
61 " ---------------------------------------------------------------------------
62 " Highlight
63 " ---------------------------------------------------------------------------
64
65 highlight Comment ctermfg=DarkGrey guifg=#444444
66 highlight StatusLineNC ctermfg=Black ctermbg=DarkGrey cterm=bold
67 highlight StatusLine ctermbg=Black ctermfg=LightGrey
68
69 " ----------------------------------------------------------------------------
70 " Highlight Trailing Whitespace
71 " ----------------------------------------------------------------------------
72
73 set list listchars=trail:.,tab:>.
74 highlight SpecialKey ctermfg=DarkGray ctermbg=Black
75
76 " ----------------------------------------------------------------------------
77 " Backups
78 " ----------------------------------------------------------------------------
79
80 set nobackup " do not keep backups after close
81 set nowritebackup " do not keep a backup while working
82 set backupcopy=yes " keep attributes of original file
83 set backupskip=/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*
84 set directory=.,~/tmp,~/.vim/swap " swap file directory-order
85
86 " ----------------------------------------------------------------------------
87 " UI
88 " ----------------------------------------------------------------------------
89
90 set ruler " show the cursor position all the time
91 set showcmd " display incomplete commands
92 set nolazyredraw " turn off lazy redraw
93 set hidden " keep buffers loaded when hidden
94 set showmode " show mode at bottom of screen
95 set wildmenu " turn on wild menu
96 set wildmode=list:longest,full
97 set cmdheight=2 " command line height
98 set backspace=2 " allow backspacing over everything in insert mode
99 set whichwrap+=<,>,h,l,[,] " backspace and cursor keys wrap to
100 set shortmess=filtIoO " shorten messages
101 set report=0 " tell us about changes
102 set nostartofline " don't jump to the start of line when scrolling
103 set scrolloff=4 " vertcal padding
104 set sidescroll=40 " side-scrolling increment (for nowrap mode)
105
106 " ----------------------------------------------------------------------------
107 " Visual Cues
108 " ----------------------------------------------------------------------------
109
110 set showmatch " brackets/braces that is
111 set matchtime=5 " duration to show matching brace (1/10 sec)
112 set incsearch " do incremental searching
113 set laststatus=2 " always show the status line
114 set ignorecase " ignore case when searching
115 set smartcase " case-sensitive if search contains an uppercase character
116 set visualbell " shut the heck up
117
118 " ----------------------------------------------------------------------------
119 " Text Formatting
120 " ----------------------------------------------------------------------------
121
122 set autoindent " automatic indent new lines
123 set smartindent " be smart about it
124 set nowrap " do not wrap lines
125 set softtabstop=2 " yep, two
126 set shiftwidth=2 " ..
127 set tabstop=4
128 set expandtab " expand tabs to spaces
129 set nosmarttab " screw tabs
130 set formatoptions+=n " support for numbered/bullet lists
131 "set textwidth=110 " wrap at 110 chars by default
132 set virtualedit=block " allow virtual edit in visual block ..
133
134 " ----------------------------------------------------------------------------
135 " Filename exclusions
136 " ----------------------------------------------------------------------------
137
138 set wildignore+=.hg,.git,.svn " version control directories
139 set wildignore+=*.jpg,*.jpeg,*.bmp,*.gif,*.png " image files
140 set wildignore+=*.o,*.obj,*.exe,*.dll " compiled object files
141 set wildignore+=*.pyc " Python byte code
142 set wildignore+=*.sw? " Vim swap files
143 set wildignore+=.DS_Store " OSX junk
144
145 " ----------------------------------------------------------------------------
146 " Tabs
147 " ----------------------------------------------------------------------------
148
149 if version >= 700
150 set tabpagemax=50 " open 50 tabs max
151 endif
152
153 " ----------------------------------------------------------------------------
154 " Mappings
155 " ----------------------------------------------------------------------------
156
157 let mapleader = ","
158
159 " <F2> to pastetoggle, to turn-off autoindent when pasting from system clipboard
160 nnoremap <F2> :set invpaste paste?<CR>
161 set pastetoggle=<F2>
162
163 " disable default vim regex handling for searching
164 nnoremap / /\v
165 vnoremap / /\v
166
167 " reflow paragraph with Q in normal and visual mode
168 nnoremap Q gqap
169 vnoremap Q gq
170
171 " sane movement with wrap turned on
172 nnoremap j gj
173 nnoremap k gk
174 vnoremap j gj
175 vnoremap k gk
176 nnoremap <Down> gj
177 nnoremap <Up> gk
178 vnoremap <Down> gj
179 vnoremap <Up> gk
180 inoremap <Down> <C-o>gj
181 inoremap <Up> <C-o>gk
182
183 " do not menu with left / right in command line
184 cnoremap <Left> <Space><BS><Left>
185 cnoremap <Right> <Space><BS><Right>
186
187 " buffer navigation
188 nnoremap <C-n> :bnext<CR>
189 nnoremap <C-p> :bprev<CR>
190
191 " easier split-window movement
192 nnoremap <C-h> <C-w>h
193 nnoremap <C-j> <C-w>j
194 nnoremap <C-k> <C-w>k
195 nnoremap <C-l> <C-w>l
196
197 " quickly edit/reload vimrc
198 nmap <silent> <leader>ev :edit $MYVIMRC<CR>
199 nmap <silent> <leader>sv :source $MYVIMRC<CR>
200
201 " ----------------------------------------------------------------------------
202 " Auto Commands
203 " ----------------------------------------------------------------------------
204
205 " jump to last position of buffer when opening
206 au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") |
207 \ exe "normal g'\"" | endif
208
209 " ----------------------------------------------------------------------------
210 " PATH on MacOS X
211 " ----------------------------------------------------------------------------
212
213 if system('uname') =~ 'Darwin'
214 let $PATH = $HOME .
215 \ '/usr/local/bin:/usr/local/sbin:' .
216 \ '/usr/pkg/bin:' .
217 \ '/opt/local/bin:/opt/local/sbin:' .
218 \ $PATH
219 endif
220
221 " ---------------------------------------------------------------------------
222 " sh config
223 " ---------------------------------------------------------------------------
224
225 au Filetype sh,bash set ts=4 sts=4 sw=4 expandtab
226 let g:is_bash = 1
227
228 " ---------------------------------------------------------------------------
229 " Strip all trailing whitespace in file
230 " ---------------------------------------------------------------------------
231
232 function! StripWhitespace ()
233 exec ':%s/ \+$//gc'
234 endfunction
235 map <leader>s :call StripWhitespace ()<CR>
236
237 " ---------------------------------------------------------------------------
238 " File Types
239 " ---------------------------------------------------------------------------
240
241 au Filetype gitcommit set tw=68 spell
242 au Filetype html,xml,xsl,rhtml source $HOME/.vim/scripts/closetag.vim
243 " don't use cindent for javascript
244 au FileType javascript setlocal nocindent
245 " Use Octopress syntax-highlighting for *.markdown files
246 au BufNewFile,BufRead *.markdown set filetype=octopress
247
248 " --------------------------------------------------------------------------
249 " ManPageView
250 " --------------------------------------------------------------------------
251
252 let g:manpageview_pgm= 'man -P "/usr/bin/less -is"'
253 let $MANPAGER = '/usr/bin/less -is'
254
255 " --------------------------------------------------------------------------
256 " Bundle Config
257 " --------------------------------------------------------------------------
258
259 "" Gundo
260 nnoremap <F5> :GundoToggle<CR>
261
262 "" Command-T
263 noremap <leader>o <Esc>:CommandT<CR>
264 noremap <leader>O <Esc>:CommandTFlush<CR>
265 noremap <leader>m <Esc>:CommandTBuffer<CR>
266