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 call pathogen#infect() " enable pathogen (plugin bundles)
15 filetype plugin indent on " load filetype plugin
17 " ---------------------------------------------------------------------------
19 " ---------------------------------------------------------------------------
21 if &t_Co > 2 || has("gui_running")
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
32 syntax on " syntax highligting
33 set hlsearch " highlight all search matches
34 " Press Space to turn off highlighting and clear any message already displayed.
35 :nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
38 if !exists("autocmd_colorscheme_loaded")
39 let autocmd_colorscheme_loaded = 1
40 autocmd ColorScheme * highlight TodoRed ctermbg=LightRed guibg=#E01B1B ctermfg=White guifg=#002b37
43 " Solarized color-scheme
44 let g:solarized_termtrans=1 " Always use terminal's default bg color
48 " Auto-highlight TODO's
51 autocmd Syntax * call matchadd('TodoRed', '\W\zs\(TODO\)')
56 " ---------------------------------------------------------------------------
58 " ---------------------------------------------------------------------------
60 highlight Comment ctermfg=DarkGrey guifg=#444444
61 highlight StatusLineNC ctermfg=Black ctermbg=DarkGrey cterm=bold
62 highlight StatusLine ctermbg=Black ctermfg=LightGrey
64 " ----------------------------------------------------------------------------
65 " Highlight Trailing Whitespace
66 " ----------------------------------------------------------------------------
68 set list listchars=trail:.,tab:>.
69 highlight SpecialKey ctermfg=DarkGray ctermbg=Black
71 " ----------------------------------------------------------------------------
73 " ----------------------------------------------------------------------------
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=~/.vim/swap,~/tmp,. " keep swp files under ~/.vim/swap
83 " ----------------------------------------------------------------------------
85 " ----------------------------------------------------------------------------
87 set ruler " show the cursor position all the time
88 set noshowcmd " don't 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 ch=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=filtIoOA " shorten messages
97 set report=0 " tell us about changes
98 set nostartofline " don't jump to the start of line when scrolling
100 " ----------------------------------------------------------------------------
102 " ----------------------------------------------------------------------------
104 set showmatch " brackets/braces that is
105 set mat=5 " duration to show matching brace (1/10 sec)
106 set incsearch " do incremental searching
107 set laststatus=2 " always show the status line
108 set ignorecase " ignore case when searching
109 set smartcase " case-sensitive if search contains an uppercase character
110 set visualbell " shut the heck up
112 " ----------------------------------------------------------------------------
114 " ----------------------------------------------------------------------------
116 set autoindent " automatic indent new lines
117 set smartindent " be smart about it
118 "set nowrap " do not wrap lines
119 set softtabstop=2 " yep, two
120 set shiftwidth=2 " ..
122 set expandtab " expand tabs to spaces
123 set nosmarttab " screw tabs
124 set formatoptions+=n " support for numbered/bullet lists
125 set textwidth=80 " wrap at 80 chars by default
126 set virtualedit=block " allow virtual edit in visual block ..
128 " ----------------------------------------------------------------------------
130 " ----------------------------------------------------------------------------
133 set tabpagemax=50 " open 50 tabs max
136 " ----------------------------------------------------------------------------
138 " ----------------------------------------------------------------------------
140 " <F2> to pastetoggle, to turn-off autoindent when pasting from system clipboard
141 nnoremap <F2> :set invpaste paste?<CR>
145 "" <F8>/<Shift>-<F8> to navigation between buffers
148 nnoremap <F8> :sbnext<CR>
149 nnoremap <S-F8> :sbprevious<CR>
155 "map <A-F7> :copen<CR>
157 "" emacs movement keybindings in insert mode
163 " reflow paragraph with Q in normal and visual mode
167 "" sane movement with wrap turned on
176 "inoremap <Down> <C-o>gj
177 "inoremap <Up> <C-o>gk
179 "" do not menu with left / right in command line
180 "cnoremap <Left> <Space><BS><Left>
181 "cnoremap <Right> <Space><BS><Right>
183 " ----------------------------------------------------------------------------
185 " ----------------------------------------------------------------------------
187 " jump to last position of buffer when opening
188 au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") |
189 \ exe "normal g'\"" | endif
191 " don't use cindent for javascript
192 autocmd FileType javascript setlocal nocindent
194 " ----------------------------------------------------------------------------
196 " ----------------------------------------------------------------------------
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?
204 "nmap <unique> <silent> <D-f> <Plug>LookupFile
205 "imap <unique> <silent> <D-f> <C-O><Plug>LookupFile
207 " ----------------------------------------------------------------------------
209 " ----------------------------------------------------------------------------
211 if system('uname') =~ 'Darwin'
213 \ '/usr/local/bin:/usr/local/sbin:' .
215 \ '/opt/local/bin:/opt/local/sbin:' .
219 " ---------------------------------------------------------------------------
221 " ---------------------------------------------------------------------------
223 au Filetype sh,bash set ts=4 sts=4 sw=4 expandtab
226 " ---------------------------------------------------------------------------
228 " ---------------------------------------------------------------------------
230 "map ,f :tabnew <cfile><CR>
232 "map ,dt :tabnew %:h/<CR>
234 "" I use these commands in my TODO file
235 "map ,a o<ESC>:r!date +'\%A, \%B \%d, \%Y'<CR>:r!date +'\%A, \%B \%d, \%Y' \| sed 's/./-/g'<CR>A<CR><ESC>
238 "map ,x :s/^\[ \]/[x]/<CR>
239 "map ,X :s/^\[x\]/[ ]/<CR>
241 " ---------------------------------------------------------------------------
242 " Strip all trailing whitespace in file
243 " ---------------------------------------------------------------------------
245 function! StripWhitespace ()
248 map ,s :call StripWhitespace ()<CR>
250 " ---------------------------------------------------------------------------
252 " ---------------------------------------------------------------------------
254 au Filetype gitcommit set tw=68 spell
255 "au Filetype html,xml,xsl,rhtml source $HOME/.vim/scripts/closetag.vim
257 " --------------------------------------------------------------------------
259 " --------------------------------------------------------------------------
261 let g:manpageview_pgm= 'man -P "/usr/bin/less -is"'
262 let $MANPAGER = '/usr/bin/less -is'