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