-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
329 lines (264 loc) · 7.78 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
325
326
327
" 映射别名
"
let mapleader=";"
set nocompatible
set backspace=indent,eol,start
set path+=**
"set spell
set wildmenu
set pastetoggle=<f5>
filetype plugin indent on
noremap <cr> :nohlsearch<cr>
"map <leader>wh :set splitright<CR>:vsplit<CR>
map <leader>h :set nosplitright<CR>:vsplit<CR>
map <leader>v :set splitbelow<CR>:split<CR>
"map spvn :set nosplitbelow<CR>:split<CR>
"autocmd BufWritePost $MYVIMRC source $MYVIMRC
syntax on
set number
"set numberwidth=5
set relativenumber
set cursorline
set mouse=a
set encoding=utf-8
set wrap
set showcmd
set wildmenu
set indentexpr=
set foldmethod=indent
au BufWinLeave * silent mkview
au BufRead * silent loadview
nnoremap <space> za
set foldlevel=99
set scrolloff=5
" let &t_SI = "\<Esc>]50;CursorShape=1\x7"
" let &t_SR = "\<Esc>]50;CursorShape=2\x7"
" let &t_EI = "\<Esc>]50;CursorShape=0\x7"
set laststatus=2
set autochdir
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
" 跳转
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
nnoremap <Up> <Nop>
"inoremap <Up> <Nop>
nnoremap <Down> <Nop>
"inoremap <Down> <Nop>
nnoremap <Left> <Nop>
inoremap <Left> <Nop>
nnoremap <Right> <Nop>
inoremap <Right> <Nop>
inoremap jj <Esc>
nnoremap Y yy
inoremap , ,<c-g>u
inoremap . .<c-g>u
inoremap ! !<c-g>u
inoremap ? ?<c-g>u
inoremap <space> <space><c-g>u
nnoremap g; g;zz
"map R diwP
vnoremap <Down> :m '>+1<CR>gv=gv
vnoremap <Up> :m '<-2<CR>gv=gv
vnoremap < <gv
vnoremap > >gv
nmap J 5j
vmap J 5j
nmap K 5k
vmap K 5k
noremap L $
noremap H ^
set incsearch
set smartcase
set hlsearch
"map <down> :res -5<CR>
"map <left> :vertical resize-5<CR>
"map <right> :vertical resize+5<CR>
map <Leader>ot :tabe<CR>
map <Leader>n gt<CR>
map <Leader>1 1gt<CR>
map <Leader>2 2gt<CR>
map <Leader>3 3gt<CR>
map <Leader>4 4gt<CR>
map <Leader>5 5gt<CR>
map <Leader>6 6gt<CR>
map <Leader>7 7gt<CR>
map <Leader>8 8gt<CR>
map <Leader>9 9gt<CR>
map <Leader>b gT<CR>
call plug#begin('~/.vim/plugged')
Plug 'terryma/vim-multiple-cursors'
Plug 'vim-airline/vim-airline'
Plug 'ctrlp.vim/ctrlp.vim'
Plug 'tpope/vim-surround'
"Plug 'connorholyday/vim-snazzy'
" File navigation
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'Xuyuanp/nerdtree-git-plugin'
" Taglist
"Plug 'majutsushi/tagbar', { 'on': 'TagbarOpenAutoClose' }
" Error checking
"Plug 'w0rp/ale'
" Auto Complete
" Plug 'Valloric/YouCompleteMe'
" Undo Tree
"Plug 'mbbill/undotree/'
" Other visual enhancement
" Plug 'nathanaelkane/vim-indent-guides'
Plug 'itchyny/vim-cursorword'
" fzf
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
" Git
Plug 'rhysd/conflict-marker.vim'
Plug 'tpope/vim-fugitive'
Plug 'mhinz/vim-signify'
Plug 'gisphm/vim-gitignore', { 'for': ['gitignore', 'vim-plug'] }
" HTML, CSS, JavaScript, PHP, JSON, etc.
Plug 'elzr/vim-json'
Plug 'hail2u/vim-css3-syntax'
Plug 'spf13/PIV', { 'for' :['php', 'vim-plug'] }
Plug 'gko/vim-coloresque', { 'for': ['vim-plug', 'php', 'html', 'javascript', 'css', 'less'] }
Plug 'pangloss/vim-javascript', { 'for' :['javascript', 'vim-plug'] }
Plug 'mattn/emmet-vim'
" Python
Plug 'vim-scripts/indentpython.vim'
" Markdown
"Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install_sync() }, 'for' :['markdown', 'vim-plug'] }
"Plug 'dhruvasagar/vim-table-mode', { 'on': 'TableModeToggle' }
"Plug 'vimwiki/vimwiki'
" Bookmarks
"Plug 'kshenoy/vim-signature'
" Other useful utilities
"Plug 'terryma/vim-multiple-cursors'
"Plug 'junegunn/goyo.vim' " distraction free writing mode
"Plug 'tpope/vim-surround' " type ysks' to wrap the word with '' or type cs'` to change 'word' to `word`
"Plug 'godlygeek/tabular' " type ;Tabularize /= to align the =
"Plug 'gcmt/wildfire.vim' " in Visual mode, type i' to select all text in '', or type i) i] i} ip
"Plug 'scrooloose/nerdcommenter' " in <space>cc to comment a line
"" Dependencies
"Plug 'MarcWeber/vim-addon-mw-utils'
"Plug 'kana/vim-textobj-user'
"Plug 'fadein/vim-FIGlet'
Plug 'posva/vim-vue'
"Plug 'SirVer/ultisnips'
":jjhPlug 'theniceboy/vim-snippets'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'whatyouhide/vim-gotham'
Plug 'jayli/vim-easydebugger'
call plug#end()
colorscheme gotham256
"inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() : "\<C-g>u\<CR>"
if exists('*complete_info')
inoremap <silent><expr> <cr> complete_info(['selected'])['selected'] != -1 ? "\<C-y>" : "\<C-g>u\<CR>"
endif
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
vnoremap <silent> * :<C-u>call VisualSelection('', '')<CR>/<C-R>=@/<CR><CR>
vnoremap <silent> # :<C-u>call VisualSelection('', '')<CR>?<C-R>=@/<CR><CR>
function! CmdLine(str)
call feedkeys(":" . a:str)
endfunction
function! VisualSelection(direction, extra_filter) range
let l:saved_reg = @"
execute "normal! vgvy"
let l:pattern = escape(@", "\\/.*'$^~[]")
let l:pattern = substitute(l:pattern, "\n$", "", "")
if a:direction == 'gv'
call CmdLine("Ack '" . l:pattern . "' " )
elseif a:direction == 'replace'
call CmdLine("%s" . '/'. l:pattern . '/')
endif
let @/ = l:pattern
let @" = l:saved_reg
endfunction
"hhlet g:UltiSnipsExpandTrigger="tt"
"hh" let g:UltiSnipsSnippetDirectories=[$HOME.'/.vim/plugged/ultisnips', $HOME.'/.vim/plugged/vim-snippets/UltiSnips']
"hhlet g:UltiSnipsSnippetDirectories=[$HOME.'/.vim/plugged/ultisnips', $HOME.'/.vim/mysnips']
" tabsize
set tabstop=2
set shiftwidth=2
set expandtab
set autoindent
set nowrap
" 剪切板
set clipboard=unnamed
set pastetoggle=<F9>
"colorscheme snazzy
"let g:SnazzyTransparent=1
" Emmet
" let g:user_emmet_install_global = 0
" let g:user_emmet_expandabbr_key = '<F2>'
"let g:user_emmet_leader_key= '<Tab>'
"autocmd FileType html,css,vue EmmetInstal
" NERDTREE
map <Leader>f :NERDTreeMirror<CR>
map <Leader>f :NERDTreeToggle<CR>
"修改树的显示图标
"let g:NERDTreeDirArrowExpandable = '+'
"let g:NERDTreeDirArrowCollapsible = '-'
let g:NERDTreeShowLineNumbers=1
let NERDTreeShowHidden=1
let g:NERDTreeWinPos = "left"
let NERDTreeIgnore = ['\.pyc$', '__pycache__', 'node_modules']
let g:NERDTreeWinSize=30
"autocmd vimenter * NERDTree
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = ''
nnoremap <c-b> :CtrlPBuffer><CR>
set wildignore+=*/tmp/*,*/node_modules/*,*.so,*.swp,*.zip " Linux/MacOSX
set wildignore+=*\\tmp\\*,*.swp,*.zip,*.exe " Windows
cnoremap <expr> %% getcmdtype( ) == ':' ? expand('%:h').'/' : '%%'
" autocmd BufWritePost * call system("ctags -R")
"
" 映射启动
nmap <Leader>; :w<CR>
nmap <Leader>q :q!<CR>
"nmap <Leader>' "
" Delete trailing white space on save, useful for some filetypes ;)
fun! CleanExtraSpaces()
let save_cursor = getpos(".")
let old_query = getreg('/')
silent! %s/\s\+$//e
call setpos('.', save_cursor)
call setreg('/', old_query)
endfun
if has("autocmd")
autocmd BufWritePre *.txt,*.js,*.py,*.wiki,*.sh,*.coffee,*.ts,*.tsx :call CleanExtraSpaces()
endif
"imap <leader>( ()<ESC>i
" 去除修改操作时保存内容到无用_寄存器去
"nnoremap <Leader>dd "_dd
"nnoremap d "_d
"nnoremap D "_D
"nnoremap S "_S
"nnoremap x "_x
"nnoremap X "_X
"nnoremap c "_c
"nnoremap C "_C
"nnoremap m1 :normal! kmmjdd{p`m<cr>
"vmap <leader>j <plug>moveblockdown
"vmap <leader>k <plug>moveblockup
"vmap X y/<C-R>"<CR>
"
"
nmap daf va{Vd
nmap yaf va{Vy
nmap S ^c$
nmap <Leader>p vawp
vnoremap ;) <esc>`>a)<esc>`<i(<esc>
vnoremap ;] <esc>`>a]<esc>`<i[<esc>
"vnoremap ;} <esc>`>a}<esc>`<i{<esc>
vnoremap ;} <esc>`>a}<esc>`<i{<esc>
vnoremap ts <esc>`>a)<esc>`<it(<esc>
"vnoremap $$ <esc>`>a"<esc>`<i"<esc>
"vnoremap $q <esc>`>a'<esc>`<i'<esc>
"vnoremap $e <esc>`>a`<esc>`<i`<esc>
"inoremap $1 ()<esc>i
"inoremap $2 []<esc>i
"inoremap $3 {}<esc>i
"inoremap $4 {<esc>o}<esc>O
"inoremap $q ''<esc>i
"inoremap $e ""<esc>i