-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvimrc
215 lines (164 loc) · 5.08 KB
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
set nocompatible
filetype off " required by Vundle plumbing
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
so ~/.vim/bundle.vim
filetype plugin indent on
syntax on
set number
set ruler
syntax on
set encoding=utf-8
set hidden
let mapleader = ","
set cursorline
" Manage all my plugins through pathogen
" Store lots of :cmdline history
set history=1000
" Store marks on up to 100 files
set viminfo='100,f1
" Whitespace stuff
set wrap
set scrolloff=3
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set list listchars=tab:\ \ ,trail:·
" These two will leave the cursor to where it cleaned spaces which isn't very
" comfortable
autocmd BufWritePre *.rb :%s/\s\+$//e
autocmd BufWritePre *.py :%s/\s\+$//e
" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase
" Tab completion
set wildmode=list:longest,list:full
set wildignore+=*.o,*.obj,.git,*.rbc,*.class,.svn,test/fixtures/*,vendor/gems/*,vendor/bundle/*
" make uses real tabs
au FileType make set noexpandtab
" Status bar
set laststatus=2
set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P
" set statusline=[%n]\ %<%.99f\ %h%w%m%r%y%{exists('g:loaded_rvm')?rvm#statusline():''}%=%-16(\ %l,%c-%v\ %)%P
" Fix issues with the shell and fugitive
set shell=bash
" Thorfile, Rakefile, Vagrantfile and Gemfile are Ruby
au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru} set ft=ruby
" Remember last location in file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal g'\"" | endif
endif
function s:setupWrapping()
set wrap
set wm=2
set textwidth=72
endfunction
function s:setupMarkup()
call s:setupWrapping()
map <buffer> <Leader>p :Mm <CR>
endfunction
" md, markdown, and mk are markdown and define buffer-local preview
au BufRead,BufNewFile *.{md,markdown,mdown,mkd,mkdn} call s:setupMarkup()
au BufRead,BufNewFile *.txt call s:setupWrapping()
" make python follow PEP8 ( http://www.python.org/dev/peps/pep-0008/ )
au FileType python set tabstop=4 textwidth=79
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
" load the plugin and indent settings for the detected filetype
filetype plugin indent on
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR>
" CTags
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>
" Unimpaired configuration
" Bubble single lines
nmap <C-K> [e
nmap <C-J> ]e
" Bubble multiple lines
vmap <C-K> [egv
vmap <C-J> ]egv
" ZoomWin
map <Leader>z :ZoomWin<CR>
map <Leader><Leader> <c-^>
function! RenameFile()
let old_name = expand('%')
let new_name = input('New file name: ', expand('%'), 'file')
if new_name != '' && new_name != old_name
exec ':saveas ' . new_name
exec ':silent !rm ' . old_name
redraw!
endif
endfunction
map <leader>n :call RenameFile()<cr>
" Enable syntastic syntax checking
let g:syntastic_enable_signs=1
let g:syntastic_quiet_warnings=1
" gist-vim defaults
if has("mac")
let g:gist_clip_command = 'pbcopy'
elseif has("unix")
let g:gist_clip_command = 'xclip -selection clipboard'
endif
let g:gist_detect_filetype = 1
let g:gist_open_browser_after_post = 1
" MacVIM shift+arrow-keys behavior (required in .vimrc)
let macvim_hig_shift_movement = 1
"spell check when writing commit logs
autocmd filetype svn,*commit* set spell
let g:ctrlp_working_path_mode = 2
" refresh current directory when switching buffers
" au BufEnter * cal ctrlp#SetWorkingPath(2)
let g:ctrlp_mru_files = 1
let g:ctrlp_jump_to_buffer = 1
let g:ctrlp_custom_ignore = 'vendor/bundle$'
map <Leader>f :CtrlPRoot<CR>
map <Leader>c :CtrlPCurFile<CR>
map <Leader>b :CtrlPBuffer<CR>
map <Leader>m :CtrlPMRUFiles<CR>
" Directories for swp files
set backupdir=~/.vim/backup
set directory=~/.vim/backup
" If we're under Ubuntu, adjust ack's command
if !filereadable("/usr/bin/ack")
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
endif
command Notes e ~/.notes
command Todo Ack TODO
command ShowUtf8 /[^[:print:]]
" force myself to use hjkl
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
" Rails / Ruby related
map <leader>rl :.Rake<cr>
map <leader>rr :Rake<cr>
" Clojure stuff
let tlist_clojure_settings = 'clojure;f:function'
" Show me some files so I don't get confused by the same filenames
map <leader>n :NERDTreeToggle<cr>
map <leader>t :TlistToggle<cr>
" TODO ensure this is run only when I'm in a rails project
map <leader>rt :!bundle list --paths=true \| xargs ctags --extra=+f --exclude=.git --exclude=log --exclude='*.js*' -R *
" Insert CRs with ease
nmap <S-Return> i<Return><Esc>
nmap <Return> o<Esc>
" Clean search
map // :nohlsearch<CR>; echo 'Search highlight cleared' <CR>
let g:ruby_path = system('echo $HOME/.rbenv/shims')
if &term =~ '256color'
" Disable Background Color Erase (BCE) so that color schemes
" work properly when Vim is used inside tmux and GNU screen.
" See also http://snk.tuxfamily.org/log/vim-256color-bce.html
set t_ut=
endif
source ~/.vimrc.local