-
Notifications
You must be signed in to change notification settings - Fork 3
/
.vimrc
231 lines (178 loc) · 4.53 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
set t_Co=256
set background=dark
colorscheme solarized
syntax on
filetype off
call pathogen#runtime_append_all_bundles()
filetype plugin indent on
" Make vim incompatible to vi
set nocompatible
set modelines=0
" Tab settings
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
" More common settings
set encoding=utf-8
set scrolloff=3
set autoindent
set showmode
set showcmd
set hidden
set wildmenu
set wildmode=list:longest
set visualbell
set matchpairs=(:),[:],{:},<:>
set viminfo='1000,f1,<500,:500,/500
" Moving between windows
map <C-J> <C-W>j
map <C-K> <C-W>k
map <c-h> <c-w>h
map <c-l> <c-w>l
map - <C-W>-
map + <C-W>+
map <M-<> <C-W><
map <M->> <C-W>>
" Cursor line
set ttyfast
set ruler
set backspace=indent,eol,start
set whichwrap=h,l,[,],~
set laststatus=2
" relativenumber
set number
set norelativenumber
" undofile
set shell=/usr/local/bin/bash
set lazyredraw
set matchtime=3
" Leader key
let mapleader = ","
set title
set dictionary=/usr/share/dict/words
set pastetoggle=<F3>
" Allow vim to edit crontab
set backupskip=/tmp/*,/private/tmp/*
" Enable mouse
"set mouse=a
" Searching and moving
nnoremap / /\v
vnoremap / /\v
set ignorecase
set smartcase
set gdefault
set incsearch
set showmatch
set hlsearch
nnoremap <leader><space> :noh<cr>
nnoremap <tab> %
vnoremap <tab> %
" Long lines
set wrap
set textwidth=79
set formatoptions=qrn1
set colorcolumn=79
" Special characters
set list
set listchars=tab:▸\
inoremap <leader>j <ESC>:RopeGotoDefinition<cr>
nnoremap ; :
" Remove whitespace from a file
nnoremap <leader>W :%s/\s\+$//<cr>:let @/=''<CR>
" ,ft Fold tag, helpful for HTML editing.
nnoremap <leader>ft vatzf
" ,q Re-hardwrap Paragraph
nnoremap <leader>q gqip
" ,v Select just pasted text.
nnoremap <leader>v V`]
" ,ev Shortcut to edit .vimrc file on the fly on a vertical window.
nnoremap <leader>ev <C-w><C-v><C-l>:e $MYVIMRC<cr>
" jj For Qicker Escaping between normal and editing mode.
inoremap jj <ESC>
" Make Sure that Vim returns to the same line when we reopen a file"
augroup line_return
au!
au BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ execute 'normal! g`"zvzz' |
\ endif
augroup END
nnoremap g; g;zz
" Working with split screen nicely
" Resize Split When the window is resized"
au VimResized * :wincmd =
" Wildmenu completion "
set wildmenu
set wildmode=list:longest
set wildignore+=.hg,.git,.svn " Version Controls"
set wildignore+=*.aux,*.out,*.toc "Latex Indermediate files"
set wildignore+=*.jpg,*.bmp,*.gif,*.png,*.jpeg "Binary Imgs"
set wildignore+=*.o,*.obj,*.exe,*.dll,*.manifest "Compiled Object files"
set wildignore+=*.spl "Compiled speolling world list"
set wildignore+=*.sw? "Vim swap files"
set wildignore+=*.DS_Store "OSX SHIT"
set wildignore+=*.luac "Lua byte code"
set wildignore+=migrations "Django migrations"
set wildignore+=*.pyc "Python Object codes"
set wildignore+=*.orig "Merge resolution files"
" gvim settings
" Removing scrollbars
if has("gui_running")
set gfn=Letter\ Gothic\ Std\ Bold:h14
set tabpagemax=1
set transp=5
set sessionoptions+=resize,winpos
set guitablabel=%-0.12t%M
set guioptions-=T
set guioptions-=r
set guioptions-=L
set guioptions+=a
set guioptions+=m
set listchars=tab:▸\
autocmd VimEnter * wincmd p
autocmd VimEnter * NERDTreeFind
autocmd VimEnter * wincmd p
autocmd VimEnter * vsplit
endif
autocmd bufwritepost .vimrc source ~/.vimrc
" Mapping to NERDTree
let g:NERDTreeWinPos = 'right'
nnoremap <C-n> :NERDTreeToggle<cr>
nnoremap NF :NERDTreeFind<CR>
" Mini Buffer some settigns."
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplModSelTarget = 1
" Rope Plugin settings
imap <leader>j <ESC>:RopeGotoDefinition<cr>
nmap <leader>j <ESC>:RopeGotoDefinition<cr>
" Tagbar key bindings."
nmap <leader>l <ESC>:TagbarToggle<cr>
imap <leader>l <ESC>:TagbarToggle<cr>i
" Change directory to current
function! CHANGE_CURR_DIR()
let _dir = expand("%:p:h")
exec "cd " . _dir
unlet _dir
endfunction
autocmd BufEnter * call CHANGE_CURR_DIR()
if &term == "xterm-color"
set t_kb=
fixdel
endif
"nnoremap <silent> Q :Ex<CR>
noremap Y y$
nmap <Tab> >>
nmap <S-Tab> <<
vmap <Tab> >gv
vmap <S-Tab> <gv
nmap ,pdb Oimport pdb; pdb.set_trace()<Esc>
inoremap <D-CR> <Esc>o
autocmd Syntax python inoremap <S-CR> <Esc>A:<Esc>o
autocmd Syntax css,javascript,html inoremap <S-CR> <Esc>A;<Esc>o
map <D-/> <leader>c<space>
" Other stuff "
nnoremap <F5> :!pyflakes %<return>
map <leader>v <Plug>TaskList