]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .vimrc
.vimrc: Misc key-mapping changes
[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 "" <F5> to gundo
157 nnoremap <F5> :GundoToggle<CR>
158
159 " disable default vim regex handling for searching
160 nnoremap / /\v
161 vnoremap / /\v
162
163 " reflow paragraph with Q in normal and visual mode
164 nnoremap Q gqap
165 vnoremap Q gq
166
167 " sane movement with wrap turned on
168 nnoremap j gj
169 nnoremap k gk
170 vnoremap j gj
171 vnoremap k gk
172 nnoremap <Down> gj
173 nnoremap <Up> gk
174 vnoremap <Down> gj
175 vnoremap <Up> gk
176 inoremap <Down> <C-o>gj
177 inoremap <Up> <C-o>gk
178
179 " do not menu with left / right in command line
180 cnoremap <Left> <Space><BS><Left>
181 cnoremap <Right> <Space><BS><Right>
182
183 " easier split-window movement
184 nnoremap <C-h> <C-w>h
185 nnoremap <C-j> <C-w>j
186 nnoremap <C-k> <C-w>k
187 nnoremap <C-l> <C-w>l
188
189 " ----------------------------------------------------------------------------
190 " Auto Commands
191 " ----------------------------------------------------------------------------
192
193 " jump to last position of buffer when opening
194 au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") |
195 \ exe "normal g'\"" | endif
196
197 " ----------------------------------------------------------------------------
198 " LookupFile
199 " ----------------------------------------------------------------------------
200
201 "let g:LookupFile_TagExpr = '".ftags"'
202 "let g:LookupFile_MinPatLength = 2
203 "let g:LookupFile_ShowFiller = 0 " fix menu flashiness
204 "let g:LookupFile_PreservePatternHistory = 1 " preserve sorted history?
205 "let g:LookupFile_PreserveLastPattern = 0 " start with last pattern?
206 "
207 "nmap <unique> <silent> <D-f> <Plug>LookupFile
208 "imap <unique> <silent> <D-f> <C-O><Plug>LookupFile
209
210 " ----------------------------------------------------------------------------
211 " PATH on MacOS X
212 " ----------------------------------------------------------------------------
213
214 if system('uname') =~ 'Darwin'
215 let $PATH = $HOME .
216 \ '/usr/local/bin:/usr/local/sbin:' .
217 \ '/usr/pkg/bin:' .
218 \ '/opt/local/bin:/opt/local/sbin:' .
219 \ $PATH
220 endif
221
222 " ---------------------------------------------------------------------------
223 " sh config
224 " ---------------------------------------------------------------------------
225
226 au Filetype sh,bash set ts=4 sts=4 sw=4 expandtab
227 let g:is_bash = 1
228
229 " ---------------------------------------------------------------------------
230 " Strip all trailing whitespace in file
231 " ---------------------------------------------------------------------------
232
233 function! StripWhitespace ()
234 exec ':%s/ \+$//gc'
235 endfunction
236 map <leader>s :call StripWhitespace ()<CR>
237
238 " ---------------------------------------------------------------------------
239 " File Types
240 " ---------------------------------------------------------------------------
241
242 au Filetype gitcommit set tw=68 spell
243 au Filetype html,xml,xsl,rhtml source $HOME/.vim/scripts/closetag.vim
244 " don't use cindent for javascript
245 au FileType javascript setlocal nocindent
246 " Use Octopress syntax-highlighting for *.markdown files
247 au BufNewFile,BufRead *.markdown set filetype=octopress
248
249 " --------------------------------------------------------------------------
250 " ManPageView
251 " --------------------------------------------------------------------------
252
253 let g:manpageview_pgm= 'man -P "/usr/bin/less -is"'
254 let $MANPAGER = '/usr/bin/less -is'
255