1 " ---------------------------------------------------------------------------
3 " ---------------------------------------------------------------------------
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)
14 " ---------------------------------------------------------------------------
15 " Pathogen Init (Bundles)
16 " ---------------------------------------------------------------------------
18 silent! call pathogen#infect()
19 silent! call pathogen#helptags()
20 filetype plugin indent on " enable plugins, detection and indenting in one step
22 " ---------------------------------------------------------------------------
24 " ---------------------------------------------------------------------------
26 if &t_Co > 2 || has("gui_running")
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
37 set background=dark " dark background
38 syntax enable " syntax highligting
40 " Define to-do color(s)
41 if !exists("autocmd_colorscheme_loaded")
42 let autocmd_colorscheme_loaded = 1
43 autocmd ColorScheme * highlight TodoRed ctermbg=LightRed guibg=#E01B1B ctermfg=White guifg=#002b37
46 " Solarized color-scheme
47 let g:solarized_termtrans=1 " Always use terminal's default bg color
50 " Auto-highlight TODO's
53 autocmd Syntax * call matchadd('TodoRed', '\W\zs\(TODO\)')
58 " ---------------------------------------------------------------------------
60 " ---------------------------------------------------------------------------
63 highlight Comment ctermfg=DarkGrey guifg=#425257
65 highlight Visual term=reverse cterm=reverse ctermfg=DarkGreen ctermbg=White guifg=#4d830a guibg=#fdf6e3
66 " statusline (active vs inactive)
67 highlight StatusLine term=reverse cterm=reverse ctermfg=Black ctermbg=Grey guifg=#073642 guibg=#93A1A1
68 highlight StatusLineNC term=reverse cterm=reverse ctermfg=Black ctermbg=DarkGrey guifg=#073642 guibg=#37555c
69 highlight User1 term=reverse cterm=reverse ctermfg=Black ctermbg=DarkGreen guifg=#4d830a guibg=#073642
70 " unprintable chars (listchars)
71 highlight SpecialKey ctermfg=DarkGray ctermbg=Black guifg=#374549 guibg=#06313c
73 " ----------------------------------------------------------------------------
75 " ----------------------------------------------------------------------------
77 set nobackup " do not keep backups after close
78 set nowritebackup " do not keep a backup while working
79 set backupcopy=yes " keep attributes of original file
80 set backupskip=/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*
81 set directory=.,~/tmp,~/.vim/swap " swap file directory-order
83 " ----------------------------------------------------------------------------
85 " ----------------------------------------------------------------------------
87 set ruler " show the cursor position all the time
88 set showcmd " display incomplete commands
89 set nolazyredraw " turn off lazy redraw
90 set hidden " keep buffers loaded when hidden
91 set showmode " show mode at bottom of screen
92 set wildmenu " turn on wild menu
93 set wildmode=list:longest,full
94 set cmdheight=2 " command line height
95 set backspace=2 " allow backspacing over everything in insert mode
96 set whichwrap+=<,>,h,l,[,] " backspace and cursor keys wrap to
97 set shortmess=filtIoO " shorten messages
98 set report=0 " tell us about changes
99 set nostartofline " don't jump to the start of line when scrolling
100 set scrolloff=4 " vertcal padding
101 set sidescroll=40 " side-scrolling increment (for nowrap mode)
102 set sidescrolloff=10 " horz padding
104 " ----------------------------------------------------------------------------
106 " ----------------------------------------------------------------------------
108 set showmatch " brackets/braces that is
109 set matchtime=5 " duration to show matching brace (1/10 sec)
110 set incsearch " do incremental searching
111 set laststatus=2 " always show the status line
112 set ignorecase " ignore case when searching
113 set smartcase " case-sensitive if search contains an uppercase character
114 set visualbell " shut the heck up
115 set hlsearch " highlight all search matches
116 set list listchars=trail:·,tab:>·,precedes:<,extends:> " show trailing whitespace and tab chars
118 " ----------------------------------------------------------------------------
120 " ----------------------------------------------------------------------------
122 set statusline=%1*\ %n%0*\ %<%f " buffer #, filename
123 set statusline+=\ %h%m%r " file-state flags
124 set statusline+=%= " left-right divider
125 set statusline+=%{strlen(&fenc)?&fenc:&enc},%{&ff}\ %y " file-encoding, format, type
126 set statusline+=\ %12.(%v,%l/%L%)\ \ %-4P " cursor position, % through file of viewport
128 let g:Powerline_theme = 'default' " standard segments
129 let g:Powerline_colorscheme = 'solarized16' " modified solarized16 theme
130 let g:Powerline_stl_path_style = 'relative' " show parent folders
131 let g:Powerline_cache_enabled = 0 " don't cache
133 " ----------------------------------------------------------------------------
135 " ----------------------------------------------------------------------------
137 set autoindent " automatic indent new lines
138 set smartindent " be smart about it
139 set nowrap " do not wrap lines
140 set softtabstop=2 " yep, two
141 set shiftwidth=2 " ..
143 set expandtab " expand tabs to spaces
144 set smarttab " smarter softtab handling
145 set formatoptions+=n " support for numbered/bullet lists
146 set textwidth=0 " no line-wrapping by default
147 set virtualedit=block " allow virtual edit in visual block ..
149 " ----------------------------------------------------------------------------
150 " Filename exclusions
151 " ----------------------------------------------------------------------------
153 set wildignore+=.hg,.git,.svn " version control directories
154 set wildignore+=*.jpg,*.jpeg,*.bmp,*.gif,*.png " image files
155 set wildignore+=*.o,*.obj,*.exe,*.dll " compiled object files
156 set wildignore+=*.pyc " Python byte code
157 set wildignore+=*.sw? " Vim swap files
158 set wildignore+=.DS_Store " OSX junk
160 " ----------------------------------------------------------------------------
162 " ----------------------------------------------------------------------------
165 set tabpagemax=50 " open 50 tabs max
168 " ----------------------------------------------------------------------------
170 " ----------------------------------------------------------------------------
174 " <Space> to turn off highlighting and clear any message already displayed.
175 nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
177 " <F2> to pastetoggle, to turn-off autoindent when pasting from system clipboard
178 nnoremap <F2> :set paste! paste?<CR>
181 " <F4> to toggle NERDTreee
182 let NERDTreeShowHidden=1 " show dotfiles by default
183 noremap <F4> :NERDTreeToggle<CR>
185 " <F5> to toggle Gundo
186 nnoremap <F5> :GundoToggle<CR>
188 " <F7> to toggle spell-check
189 nnoremap <F7> :setlocal spell! spelllang=en_us spell?<CR>
190 inoremap <F7> <C-o>:setlocal spell! spelllang=en_us spell?<CR>
194 let g:ctrlp_show_hidden = 1
195 noremap <leader>o <Esc>:CtrlP<CR>
196 noremap <leader>O <Esc>:CtrlP<CR>
197 noremap <leader>m <Esc>:CtrlPBuffer<CR>
199 " make Y consistent with C (c$) and D (d$)
202 " disable default vim regex handling for searching
206 " reflow paragraph with Q in normal and visual mode
210 " movement based on display lines not physical lines (sane movement with wrap turned on)
219 inoremap <Down> <C-o>gj
220 inoremap <Up> <C-o>gk
222 " do not menu with left / right in command line
223 cnoremap <Left> <Space><BS><Left>
224 cnoremap <Right> <Space><BS><Right>
227 nnoremap <C-n> :bnext<CR>
228 nnoremap <C-p> :bprev<CR>
230 " easier split-window movement
231 nnoremap <C-h> <C-w>h
232 nnoremap <C-j> <C-w>j
233 nnoremap <C-k> <C-w>k
234 nnoremap <C-l> <C-w>l
236 " reselect visual block after indent/outdent
240 " quickly edit/reload vimrc
241 nmap <silent> <leader>ev :edit $MYVIMRC<CR>
242 nmap <silent> <leader>sv :source $MYVIMRC<CR>
245 nmap <leader>u mQviwU`Q
246 nmap <leader>l mQviwu`Q
248 " upper/lower first char of word
249 nmap <leader>U mQgewvU`Q
250 nmap <leader>L mQgewvu`Q
252 " cd to the directory containing the file in the buffer
253 nmap <silent> <leader>cd :lcd %:h<CR>
255 " set text wrapping toggles
256 nmap <silent> <leader>tw :set wrap! wrap?<CR>
258 " set list-whitespace-chars toggle
259 nmap <silent> <leader>ws :set list! list?<CR>
261 " find merge conflict markers
262 nmap <silent> <leader>fc <ESC>/\v^[<=>]{7}( .*\|$)<CR>
264 " toggle hlsearch with <leader>hs
265 nmap <silent> <leader>hs :set hlsearch! hlsearch?<CR>
267 " strip all trailing whitespace in file
268 nmap <silent> <leader>s :%s/\s\+$//<CR>
270 " toggle diffmode for a buffer
271 function! DiffToggle()
278 nnoremap <silent> <Leader>df :call DiffToggle()<CR>
280 " Git (Fugitive) support
281 nmap <silent> <leader>gb :Gblame<CR>
282 nmap <silent> <leader>gs :Gstatus<CR>
283 nmap <silent> <leader>gd :Gdiff<CR>
284 nmap <silent> <leader>gl :Glog<CR>
285 nmap <silent> <leader>gc :Gcommit<CR>
286 nmap <silent> <leader>gp :Gpush<CR>
288 " ----------------------------------------------------------------------------
290 " ----------------------------------------------------------------------------
292 " jump to last position of buffer when opening (but not for commit messages)
293 au BufReadPost * if &filetype !~ '^git\c' && line("'\"") > 0 && line("'\"") <= line("$") |
294 \ exe "normal g'\"" | endif
296 " ----------------------------------------------------------------------------
298 " ----------------------------------------------------------------------------
300 if system('uname') =~ 'Darwin'
302 \ '/usr/local/bin:/usr/local/sbin:' .
304 \ '/opt/local/bin:/opt/local/sbin:' .
308 " ---------------------------------------------------------------------------
310 " ---------------------------------------------------------------------------
313 au Filetype sh,bash set ts=4 sts=4 sw=4 expandtab
316 au Filetype gitcommit set tw=68 spell spelllang=en_us
318 au Filetype html,xml,xsl,rhtml source $HOME/.vim/scripts/closetag.vim
319 " don't use cindent for javascript
320 au FileType javascript setlocal nocindent
321 " use Octopress syntax-highlighting for *.markdown files
322 au BufNewFile,BufRead *.markdown set filetype=octopress spell spelllang=en_us
323 " in Makefiles, use real tabs not tabs expanded to spaces
324 au FileType make setlocal noexpandtab
326 " --------------------------------------------------------------------------
328 " --------------------------------------------------------------------------
330 let g:manpageview_pgm= 'man -P "/usr/bin/less -is"'
331 let $MANPAGER = '/usr/bin/less -is'