-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
236 lines (194 loc) · 6.25 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
set nocompatible
syntax enable
filetype off
set tabstop=4
set expandtab
set autoindent
set smartindent
set shiftwidth=4
set backspace=indent,eol,start
set ruler
set number
set showcmd
set wildmenu
set lazyredraw
set showmatch
set pastetoggle=<F9>
set encoding=utf8
set ignorecase
set incsearch
set hlsearch
set clipboard=unnamedplus
set mouse=r
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
"-------------- PLUGINS STARTS -----------------
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'edkolev/tmuxline.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'scrooloose/syntastic'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-easytags'
Plugin 'majutsushi/tagbar'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'vim-scripts/a.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-fugitive'
Plugin 'Raimondi/delimitMate'
Plugin 'christoomey/vim-tmux-navigator'
Plugin 'jez/vim-c0'
Plugin 'jez/vim-ispc'
Plugin 'kchmck/vim-coffee-script'
Plugin 'flazz/vim-colorschemes'
Plugin 'mileszs/ack.vim'
"Plugin 'artur-shaik/vim-javacomplete2'
Plugin 'ervandew/supertab'
"Plugin 'Shougo/neocomplete.vim'
"Plugin 'ajh17/VimCompletesMe'
Plugin 'benmills/vimux'
Plugin 'dracula/vim'
call vundle#end()
"-------------- PLUGINS END --------------------
"filetype plugin on
filetype plugin indent on
"----- GENERAL SETTINGS-------
"set laststatus=2
"let g:airline_detect_paste=1
let g:airline_left_sep='>> '
let g:airline_right_sep='<< '
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#fnamemod=':t'
"let g:airline#extensions#tabline#formatter='unique_tail'
let g:airline_powerline_fonts=1
let g:airline_theme='powerlineish'
let g:solarized_termcolors=256
"let g:tmuxline_present='nightly_fox'
let g:tmuxline_preset = {
\'a' : '#S',
\'c' : ['#(whoami)', '#(uptime | cut -d " " -f 1,2,3)'],
\'win' : ['#I', '#W'],
\'cwin' : ['#I', '#W', '#F'],
\'x' : '#(date)',
\'y' : ['%R', '%a', '%Y'],
\'z' : '#H'}
let t_Co=256
set background=dark
set guifont=PowerlineSymbols:h11
"colorscheme solarized
colorscheme hybrid
"---------NERD-TREE SETTINGS----------
nmap " :NERDTreeTabsToggle<CR>
"let g:nerdtree_tabs_open_on_console_startup=1
"-------- SYNTASTIC SETTINGS---------
let g:syntastic_error_symbol='✘'
let g:syntastic_warning_symbol="▲"
augroup mySyntastic
au!
au FileType tex let b:syntastic_mode="passive"
augroup END
"-------- TAGS SETTINGS --------------------------------
let g:easytags_events=['BufReadPost', 'BufWritePost']
let g:easytags_async=1
let g:easytags_dynamic_files=2
let g:easytags_resolve_links=1
let g:easytags_suppress_ctags_warning=1
let g:tagbar_autoclose=1
nmap <F8> :TagbarToggle<CR>
"autocmd BufEnter * nested :call tagbar#autoopen(0)
"---------GIT SETTINGS--------------
"hi clear SignColumn
"let g:airline#extensions#hunks#non_zero_only=1
"----------DELIMITEMATE SETTINGS-----------------
let delimitMate_expand_cr=1
augroup mydelimitMate
au!
au FileType markdown let b:delimitMate_nesting_quotes=["`"]
au FileType tex let b:delimitMate_quotes=""
au FileType tex let b:delimitMate_matchpairs="(:),[:],{:},`:'"
au FileType python let b:delimitMate_nesting_quotes=['"', "'"]
augroup END
"-----------TMUX SETTINGS--------------
let g:tmux_navigator_save_on_switch=2
set foldenable "enable folding
set foldlevelstart=10 "Open most folds by default
set foldnestmax=10 "10 nested fold max
"nnoremap <space> za
set foldmethod=indent "fold based on indent level
autocmd FileType vim let b:vim_tab_complete = 'vim'
let g:neocomplete#enable_at_startup = 1
let g:neocomplete#enable_smart_case = 1
let g:neocomplete#sources#syntax#min_keyword_length = 3
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
autocmd FileType java setlocal omnifunc=javacomplete#Complete
"autocmd FileType java set completefunc=javacomplete#CompleteParamsInf
"nmap <F4> <Plug>(JavaComplete-Imports-AddSmart)
"imap <F4> <Plug>(JavaComplete-Imports-AddSmart)
"nmap <F5> <Plug>(JavaComplete-Imports-Add)
"imap <F5> <Plug>(JavaComplete-Imports-Add)
"nmap <F6> <Plug>(JavaComplete-Imports-AddMissing)
"imap <F6> <Plug>(JavaComplete-Imports-AddMissing)
"nmap <F7> <Plug>(JavaComplete-Imports-RemoveUnused)
"imap <F7> <Plug>(JavaComplete-Imports-RemoveUnused)
let g:tmux_navigator_no_mappings = 1
nnoremap <silent> <C-H> :TmuxNavigateLeft<cr>
nnoremap <silent> <C-J> :TmuxNavigateDown<cr>
nnoremap <silent> <C-K> :TmuxNavigateUp<cr>
nnoremap <silent> <C-L> :TmuxNavigateRight<cr>
nnoremap <silent> <C-O> :TmuxNavigatePrevious<cr>
let mapleader=','
" Write all buffers before navigating from Vim to tmux pane
let g:tmux_navigator_save_on_switch = 2
" Prompt for a command to run
map <Leader>p :VimuxPromptCommand<CR>
" Run last command executed by VimuxRunCommand
map <Leader>l :VimuxRunLastCommand<CR>
" Inspect runner pane
map <Leader>i :VimuxInspectRunner<CR>
" Zoom the tmux runner pane
map <Leader>z :VimuxZoomRunner<CR>
" vv to generate new vertical split
nnoremap <silent> vv <C-w>v
""""""""""""""""""""""
" Quickly Run
""""""""""""""""""""""
map <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()
exec "w"
if &filetype == 'c'
exec "!g++ % -o %<"
exec "!time ./%<"
elseif &filetype == 'cpp'
exec "!g++ % -o %<"
exec "!time ./%<"
elseif &filetype == 'java'
exec "clear"
exec "!javac %"
exec "!time java %<"
elseif &filetype == 'sh'
:!time bash %
elseif &filetype == 'python'
exec "!time python %"
elseif &filetype == 'html'
exec "!firefox % &"
elseif &filetype == 'go'
" exec "!go build %<"
exec "!time go run %"
elseif &filetype == 'mkd'
exec "!~/.vim/markdown.pl % > %.html &"
exec "!firefox %.html &"
endif
endfunc
nnoremap th :tabfirst<CR>
nnoremap tk :tabnext<CR>
nnoremap tl :tablast<CR>
nnoremap tt :tabedit<Space>
nnoremap td :tabclose<CR>