This repository was archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
306 lines (248 loc) · 7.99 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
" Most is copied from http://amix.dk/vim/vimrc.html
" Edited for some of my own preferences, with some other tricks from around the
" internet.
set nocompatible
let g:vimdir = "~/.config/vim"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Vundle
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Below three lines are required!
filetype off
set rtp+=~/.config/vim/bundle/vundle/
call vundle#rc("~/.config/vim/bundle/")
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" Bundles
Bundle 'kien/ctrlp.vim'
Bundle 'guns/paredit'
Bundle 'scrooloose/syntastic'
Bundle 'tsaleh/vim-align'
Bundle 'guns/vim-clojure-static'
Bundle 'tpope/vim-fireplace'
Bundle 'soli/vim-python-pep8-indent'
Bundle 'tpope/vim-repeat'
Bundle 'tpope/vim-surround'
Bundle 'maxbrunsfeld/vim-yankstack'
Bundle 'w0ng/vim-hybrid'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Sets how many lines of history VIM has to remember
set history=700
" Enable filetype detection, plugin, and indent
filetype plugin indent on
" Set to auto read when a file is changed from the outside
set autoread
" Sets the map leader key, used for custom keyboard shortcuts
let mapleader=','
" Saving shortcut
nnoremap <leader>w :w<cr>
" Quickly edit/reload the vimrc files.
nnoremap <silent> <leader>ve :e $MYVIMRC<CR>
nnoremap <silent> <leader>ev :vsplit $MYVIMRC<CR>
nnoremap <silent> <leader>vs :so $MYVIMRC<CR>
nnoremap <silent> <leader>gs :so $MYGVIMRC<CR>
" When vimrc is edited, reload it
autocmd! bufwritepost vimrc source ~/.config/vim/vimrc
" Set the formatoptions (See :help fo-table)
set formatoptions+=oqaw
" Open lines and exit
noremap <leader>o o<Esc>
noremap <leader>O O<Esc>
" Shortcut for closing windows
noremap <leader>c :close<cr>
" Shortcut for closing everything
noremap <leader>q :qa!<cr>
" Shortcut for exiting insert mode
inoremap jk <esc>
" Omni-completion
set omnifunc=syntaxcomplete#Complete
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => VIM user interface
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set 7 lines to the curors - when moving vertical..
set so=999
set wildmenu "Turn on Wild Menu
set ruler "Always show current position
" Both kinds of line numbers are set - this enables a combined line numbering
" in Vim 7.4, with relativenumber for every line except the current line, which
" will use number.
set relativenumber "Line numbers that count from the current line
set number "Line numbers that count from the top of the buffer
set cmdheight=2 "The commandbar height
set hidden "Change buffer - without saving
" Set backspace config
set backspace=eol,start,indent
" Wraps moving the cursor left or right with h, l, <Left>, or <Right>
set whichwrap+=<,>,h,l
set ignorecase "Ignore case when searching
set smartcase "Override case ignorance when pattern contains upper characters
set hlsearch "Highlight search things
set incsearch "Search will search for the pattern while typing the pattern in
set nolazyredraw "Don't redraw while executing macros
set magic "Set magic on, for regular expressions
set showmatch "When bracket is inserted, briefly jump to the matching one
set mat=2 "How many tenths of a second to blink
" No sound on errors
set noerrorbells
set novisualbell
set t_vb=
" Wait 500 milliseconds for a key sequence to complete
set tm=500
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Files, backups and undo
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Turn backup off, since most stuff is in SVN, git anyway...
set nobackup
set nowb
set noswapfile
"Persistent undo
try
set undodir=~/.config/vim/undodir
set undofile
catch
endtry
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors and Fonts
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
syntax enable "Enable syntax highlight
set encoding=utf8
try
lang en_GB
catch
endtry
set ffs+=unix,dos,mac "Default file types
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Text, tab and indent related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set tabstop=8 " A tab is 8 spaces
set expandtab " Always uses spaces instead of tabs
set softtabstop=4 " Insert 4 spaces when tab is pressed
set shiftwidth=4 " An indent is 4 spaces
set smarttab " Indent instead of tab at start of line
set shiftround " Round spaces to nearest shiftwidth multiple
set nojoinspaces " Don't convert spaces to tabs
set lbr
set textwidth=79
set autoindent "Auto indent
"set cindent "Cindent
"set cinkeys+=0={,0=},0=),0=#
set wrap "Wrap lines
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Command mode related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maps semi-colon to the colon (for command mode)
nnoremap ; :
" Bash like keys for the command line
cnoremap <C-A> <Home>
cnoremap <C-E> <End>
cnoremap <C-K> <C-U>
cnoremap <C-P> <Up>
cnoremap <C-N> <Down>
" A mapping to save with sudo when you forget to use it.
cnoremap w!! %!sudo tee > /dev/null %
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Moving around, tabs and buffers
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Map space to / (search) and c-space to ? (backgwards search)
noremap <space> /
noremap <C-space> ?
noremap <silent> <leader><cr> :noh<cr>
" Smart way to move btw. windows
noremap <C-j> <C-W>j
noremap <C-k> <C-W>k
noremap <C-h> <C-W>h
noremap <C-l> <C-W>l
" Move between wrapped lines
nnoremap j gj
nnoremap k gk
" Move between physical lines
nnoremap gj j
nnoremap gk k
" Mappings for tabs
noremap <leader>n :tabnew<cr>
noremap <leader><Tab> :tabnext<cr>
noremap <leader><s-Tab> :tabprevious<cr>
noremap <leader>k :tabclose!<cr>
" When pressing <leader>d switch to the directory of the open buffer
noremap <leader>d :cd %:p:h<cr>
""""""""""""""""""""""""""""""
" => Statusline
""""""""""""""""""""""""""""""
" Always hide the statusline
set laststatus=2
" Format the statusline
" First part is the file name, including flags for paste-mode, read-only etc.
set statusline=\ %{HasPaste()}%F%m%r%h\ %w
\\ \ CWD:\ %r%{CurDir()}%h
\\ \ \ Line:\ %l/%L\:%c
function! CurDir()
let curdir = substitute(getcwd(), '/Users/amir/', "~/", "g")
return curdir
endfunction
function! HasPaste()
if &paste
return 'PASTE MODE '
else
return ''
endif
endfunction
""""""""""""""""""""""""""""""
" => Spelling section
""""""""""""""""""""""""""""""
" Toggle spelling on and off
nnoremap <silent> <leader>s :set spell!<cr>
" Set region to British English
set spelllang=en_gb
""""""""""""""""""""""""""""""
" => GUI section
""""""""""""""""""""""""""""""
" Some GUI specific stuff.
if has("gui_running")
" Don't display the toolbar
set guioptions-=m
set guioptions-=T
" Font
if has('mac')
set guifont=Monaco:h13
elseif has('unix')
set guifont=Inconsolata\ Medium\ 12
endif
endif
""""""""""""""""""""""""""""""
" => Theme section
""""""""""""""""""""""""""""""
colorscheme desert
"""""""""""""""""""""""""""""
" => Haskell section
"""""""""""""""""""""""""""""
" Recommended:
" Tabstop 8, expandtab, softtabstop 4, shiftwidth 4, smarttab
augroup haskell
autocmd!
augroup END
""""""""""""""""""""""""""""""
" => Python section
""""""""""""""""""""""""""""""
" Recommended:
" Tabstop 8, expandtab, softtabstop 4, shiftwidth 4, smarttab
let python_highlight_all = 1
augroup python
autocmd!
au FileType python set foldmethod=indent
au FileType python vertical-resize 85
au FileType python call PareditInitBuffer()
au BufNewFile,BufRead *.jinja set syntax=htmljinja
au BufNewFile,BufRead *.mako set ft=mako
augroup END
""""""""""""""""""""""""""""""
" => CtrlP plugin
""""""""""""""""""""""""""""""
noremap <C-m> :CtrlPMRUFiles<CR>
set wildignore+=*.o,*.obj,.git,*.pyc,wuala*
""""""""""""""""""""""""""""""
" => Tex
""""""""""""""""""""""""""""""
let g:tex_flavor = 'latex'
set iskeyword+=: