-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
324 lines (268 loc) · 9.04 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <[email protected]>
" Last change: 2011 Apr 15
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc
" When started as "evim", evim.vim will already have done these settings.
" Use Vim settings, rather than Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible
filetype off
call plug#begin()
Plug 'kien/ctrlp.vim' " use: ctrl-p [search] search files, ctrl-jk nav, ctrl-t open tab
Plug 'fholgado/minibufexpl.vim' " buffer explorer
" Plug 'scrooloose/syntastic' " passive syntax linter
Plug 'w0rp/ale' " passive syntax linter
Plug 'easymotion/vim-easymotion' " use: <Leader>[motion] use motion to go to
Plug 'scrooloose/nerdtree' " File explorer
Plug 'Xuyuanp/nerdtree-git-plugin' " passive nerdtree git extension
Plug 'honza/vim-snippets' " passive
Plug 'Yggdroot/indentLine' " passive
" Plug 'Valloric/YouCompleteMe', { 'do': './install.py --ts-completer --rust-completer --java-completer --clangd-completer' } " complete from omnibar, use tab to scroll
Plug 'neoclide/coc.nvim', {'branch': 'release'} " Autocompletion
Plug 'tpope/vim-repeat' " passive
Plug 'dahu/vim-fanfingtastic' " passive, f,F,t,T,etc. wrap lines
Plug 'embear/vim-localvimrc' " passive
Plug 'vim-scripts/restore_view.vim' " passive
Plug 'pangloss/vim-javascript' " passive
Plug 'mxw/vim-jsx' " passive
Plug 'alvan/vim-closetag' " passive close html tags
Plug 'Valloric/MatchTagAlways' " passive match tags
Plug 'jiangmiao/auto-pairs' " passive match brackets, parens, quotes
Plug 'christoomey/vim-tmux-navigator' " passive allow for tmux navigating like vim
Plug 'ryanoasis/vim-devicons' " passive icons
Plug 'airblade/vim-gitgutter' " passive adds a git diff gutter
Plug 'tpope/vim-fugitive' " git commands in vim
Plug 'tpope/vim-obsession' " passive vim session saving
Plug 'tpope/vim-surround' " surround stuff with cs
Plug 'vim-airline/vim-airline' " bottom status line
Plug 'ludovicchabant/vim-gutentags' " automatic ctags generation
Plug 'majutsushi/tagbar' " class outline
Plug 'rosebeats/vim-outdated-plugins' " passive, checks for plugin updates
Plug 'AndrewRadev/splitjoin.vim' " gS split blocks into multiline statements or gJ join into single line
Plug 'rust-lang/rust.vim' " passive, rust integration
Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next',
\ 'do': './install.sh'
\ }
Plug 'godlygeek/tabular' " align stuff :Tabularize
Plug 'itchyny/vim-haskell-indent' " passive, auto indent haskell
Plug 'OmniSharp/omnisharp-vim' " passive, C# IDE
" Plug 'eagletmt/ghcmod-vim'
" Plug 'Shougo/vimproc'
Plug 'ap/vim-css-color' " passive, css colors
Plug 'NLKNguyen/papercolor-theme' " passive theme
call plug#end()
let g:outdated_plugins_silent_mode=1
" theme settings
set t_Co=256
colorscheme PaperColor
let g:PaperColor_Theme_Options = {
\ 'theme': {
\ 'default.dark': {
\ 'transparent_background': 1
\ }
\ }
\}
let g:airline#extensions#ale#enabled = 1
let g:ale_linters = {
\ 'cpp': [],
\ 'cs': ['OmniSharp']
\}
let g:ale_python_auto_pipenv=1
" root marker for project
let g:ctrlp_root_markers = ['.vroot']
" omnisharp async server
let g:OmniSharp_server_stdio = 1
" nerdtree
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
let NERDTreeAutoDeleteBuffer = 1
let NERDTreeMinimalUI = 1
let NERDTreeDirArrows = 1
let NERDTreeShowHidden = 1
" closetag
let g:closetag_filenames = '*.html,*.xhtml,*.xml,*.js'
" Eclim settings
let g:EclimTempFilesEnable=0
" Misc costom settings
set nowrap
set number
set relativenumber
set ignorecase
set autoindent
" Toggle relative line numbering
function! NumberToggle()
if(&relativenumber == 1)
set norelativenumber
else
set relativenumber
endif
endfunc
" Leader key
let mapleader = "\<Space>"
nnoremap <Leader>nt :call NumberToggle()<CR>
nnoremap <Leader>0 ^
nnoremap <Leader>s :sp<CR>
nnoremap <Leader>v :vsplit<CR>
nnoremap <Leader>f :NERDTreeFocus<CR>
nnoremap <Leader>c :NERDTreeFind<CR>
nnoremap <Leader>w :MBEFocus<CR>
nnoremap <Leader>l <C-w><C-p>
nnoremap <Leader>bn :bn<CR>
nnoremap <Leader>bp :bp<CR>
nnoremap <Leader>bq :lclose<bar>b#<bar>bd #<CR>
noremap <Leader><Bar> :Tabularize /
noremap <Leader><Bar>= :Tabularize / \zs=\ze <CR>
noremap <C-j> <C-w>j
noremap <C-h> <C-w>h
noremap <C-k> <C-w>k
noremap <C-l> <C-w>l
nmap <F8> :TagbarToggle<CR>
vmap <Leader>y "+y
vmap <Leader>d "+d
nmap <Leader>y "+y
nmap <Leader>d "+d
nmap <Leader>p "+p
nmap <Leader>P "+P
vmap <Leader>p "+p
vmap <Leader>P "+P
" encoding
set encoding=UTF-8
" Folding
set foldmethod=indent
set foldlevel=10
"autocmd InsertLeave,WinEnter * setlocal foldmethod=syntax
"autocmd InsertEnter,WinLeave * setlocal foldmethod=manual
" Vim-repeat
"" TODO
" Vimrc editing
:command! Vimrc tabedit $MYVIMRC
:command! Vimu source $MYVIMRC
" Tab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
" Enter
nnoremap <S-Enter> O<Esc>
nnoremap <Enter> o<Esc>
nnoremap o ox<BS>
nnoremap O Ox<BS>
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
autocmd InsertLeave * if pumvisible() == 0|pclose|endif
" local vimrc store decisions if uppercase
let g:localvimrc_persistent = 1
" Backup
set backup
set backupdir=/tmp
set directory=~/.vim/swp
" Tab delineation
set list lcs=tab:\|\
" Eclim YCM usage
let g:EclimCompletionMethod = 'omnifunc'
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
if has("vms")
set nobackup " do not keep a backup file, use versions instead
else
set backup " keep a backup file
endif
set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
" let &guioptions = substitute(&guioptions, "t", "", "g")
" Don't use Ex mode, use Q for formatting
map Q gq
" CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo,
" so that you can undo CTRL-U after inserting a line break.
inoremap <C-U> <C-G>u<C-U>
" In many terminal emulators the mouse works just fine, thus enable it.
if has('mouse')
set mouse=a
if !has('nvim')
set ttymouse=xterm2
endif
endif
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endif
" Only do this part when compiled with support for autocommands.
if has("autocmd")
" Enable file type detection.
" Use the default filetype settings, so that mail gets 'tw' set to 72,
" 'cindent' is on in C files, etc.
" Also load indent files, to automatically do language-dependent indenting.
filetype indent plugin on
" Put these in an autocmd group, so that we can delete them easily.
augroup vimrcEx
au!
" For all text files set 'textwidth' to 78 characters.
autocmd FileType text setlocal textwidth=78
" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid or when inside an event handler
" (happens when dropping a file on gvim).
" Also don't do it when the mark is in the first line, that is the default
" position when opening a file.
autocmd BufReadPost *
\ if line("'\"") > 1 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
augroup END
else
set autoindent " always set autoindenting on
endif " has("autocmd")
" Convenient command to see the difference between the current buffer and the
" file it was loaded from, thus the changes you made.
" Only define it when not defined already.
if !exists(":DiffOrig")
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
\ | wincmd p | diffthis
endif
" Allow saving of files as sudo when I forgot to start vim using sudo.
cmap w!! w !sudo tee % > /dev/null
" Start coc config
set hidden
set nobackup
set nowritebackup
set cmdheight=2
set updatetime=300
set shortmess+=c
set signcolumn=yes
" tab completion
inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh()
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
" C-space completion
inoremap <silent><expr> <c-space> coc#refresh()
" CR confirmation
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
" goto keys
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)
" status line support
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
" end coc config