2020-06-10 17:04:54 +00:00
|
|
|
" basic settings
|
|
|
|
set ts=4
|
|
|
|
set sw=4
|
|
|
|
set cc=120
|
|
|
|
set expandtab
|
|
|
|
set nu
|
|
|
|
set hidden
|
|
|
|
set list
|
|
|
|
set autoindent
|
|
|
|
set confirm
|
|
|
|
set noundofile
|
|
|
|
set nobackup
|
2020-06-17 04:16:05 +00:00
|
|
|
set nowritebackup
|
2020-06-10 17:04:54 +00:00
|
|
|
set hlsearch
|
|
|
|
set noswapfile
|
|
|
|
set ignorecase
|
2020-06-17 04:16:05 +00:00
|
|
|
set smarttab
|
|
|
|
set smartindent
|
|
|
|
set cursorline
|
|
|
|
set incsearch
|
|
|
|
set signcolumn=yes
|
2020-06-11 06:57:01 +00:00
|
|
|
set laststatus=2
|
2020-06-11 03:20:12 +00:00
|
|
|
set fillchars=vert:\ ,fold:-
|
2020-11-02 13:43:09 +00:00
|
|
|
set clipboard=unnamed,unnamedplus
|
2020-06-10 17:04:54 +00:00
|
|
|
filetype plugin indent on
|
|
|
|
syntax on
|
2020-06-17 03:13:26 +00:00
|
|
|
au! BufWritePost $MYVIMRC source %
|
|
|
|
|
2020-06-10 17:04:54 +00:00
|
|
|
cnoremap <C-a> <Home>
|
|
|
|
cnoremap <C-e> <End>
|
|
|
|
cnoremap <C-f> <Right>
|
|
|
|
cnoremap <C-b> <Left>
|
|
|
|
cnoremap <C-d> <Delete>
|
|
|
|
cnoremap <C-n> <Down>
|
|
|
|
cnoremap <C-p> <Up>
|
|
|
|
|
|
|
|
inoremap <C-a> <Home>
|
|
|
|
inoremap <C-e> <End>
|
|
|
|
inoremap <C-f> <Right>
|
|
|
|
inoremap <C-b> <Left>
|
|
|
|
inoremap <C-d> <Delete>
|
|
|
|
inoremap <C-n> <Down>
|
|
|
|
inoremap <C-p> <Up>
|
|
|
|
|
|
|
|
noremap <C-a> <Home>
|
|
|
|
noremap <C-e> <End>
|
|
|
|
noremap <C-f> <Right>
|
|
|
|
noremap <C-b> <Left>
|
|
|
|
|
2020-09-30 07:51:31 +00:00
|
|
|
vnoremap <leader>p pgvy
|
2020-06-10 17:04:54 +00:00
|
|
|
nnoremap <leader>q :qall<CR>
|
|
|
|
|
2020-06-20 02:32:33 +00:00
|
|
|
nnoremap <leader>1 :b1<CR>
|
|
|
|
nnoremap <leader>2 :b2<CR>
|
|
|
|
nnoremap <leader>3 :b3<CR>
|
|
|
|
nnoremap <leader>4 :b4<CR>
|
|
|
|
nnoremap <leader>5 :b5<CR>
|
|
|
|
nnoremap <leader>w :w<CR>
|
|
|
|
nnoremap <leader><Esc> :noh<return><esc>
|
|
|
|
|
|
|
|
inoremap <C-w> <esc><C-w>
|
2020-10-29 03:57:00 +00:00
|
|
|
nmap <silent> <leader>ss :syntax sync fromstart<CR>
|
2020-06-11 06:57:01 +00:00
|
|
|
|
2020-06-10 17:04:54 +00:00
|
|
|
|
|
|
|
" trailing spaces
|
|
|
|
highlight ExtraWhitespace ctermbg=red guibg=red
|
|
|
|
au ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red
|
|
|
|
au Syntax * match ExtraWhitespace /\s\+$/
|
|
|
|
nnoremap <leader>es :%s/\s\+$//g<CR>
|
|
|
|
|
|
|
|
" auto install vim-plug
|
2020-06-11 06:57:01 +00:00
|
|
|
if has('nvim')
|
2020-07-28 04:07:07 +00:00
|
|
|
if has('win32')
|
|
|
|
let vim_plug_path = $LOCALAPPDATA . "/nvim/autoload/plug.vim"
|
|
|
|
else
|
|
|
|
let vim_plug_path = expand("~/.config/nvim/autoload/plug.vim")
|
|
|
|
endif
|
2020-06-11 06:57:01 +00:00
|
|
|
else
|
|
|
|
let vim_plug_path = expand("~/.vim/autoload/plug.vim")
|
|
|
|
endif
|
2020-06-10 17:04:54 +00:00
|
|
|
let vim_plug_just_installed = 0
|
|
|
|
if !filereadable(vim_plug_path)
|
|
|
|
echo "Installing vim-plug..."
|
|
|
|
:exe "!curl -fLo " . vim_plug_path . " --create-dirs https://gitee.com/klesh/vim-plug/raw/master/plug.vim"
|
|
|
|
let vim_plug_just_installed = 1
|
|
|
|
echo "vim-plug installed"
|
|
|
|
endif
|
|
|
|
|
2020-11-02 13:43:09 +00:00
|
|
|
call plug#begin('~/.vim/plugged')
|
2020-06-10 17:04:54 +00:00
|
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
|
|
Plug 'tpope/vim-surround'
|
2020-06-11 03:22:27 +00:00
|
|
|
Plug 'jiangmiao/auto-pairs'
|
2020-10-23 03:48:19 +00:00
|
|
|
Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle' }
|
|
|
|
Plug 'posva/vim-vue', { 'for': 'vue' }
|
2020-10-20 08:16:02 +00:00
|
|
|
Plug 'tpope/vim-repeat'
|
2020-11-02 13:43:09 +00:00
|
|
|
if $VIM_MODE == 'enhanced'
|
2020-10-29 03:57:00 +00:00
|
|
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
2020-11-02 13:43:09 +00:00
|
|
|
Plug 'puremourning/vimspector'
|
2020-10-29 03:57:00 +00:00
|
|
|
else
|
|
|
|
Plug 'Vimjas/vim-python-pep8-indent', { 'for': 'python' }
|
|
|
|
endif
|
2020-06-10 17:04:54 +00:00
|
|
|
Plug 'liuchengxu/eleline.vim'
|
|
|
|
Plug 'tpope/vim-fugitive' " git 功能
|
|
|
|
Plug 'scrooloose/nerdcommenter'
|
|
|
|
Plug 'mhinz/vim-grepper', { 'on': ['Grepper', '<plug>(GrepperOperator)'] }
|
2020-06-11 03:20:12 +00:00
|
|
|
Plug 'morhetz/gruvbox'
|
2020-10-23 03:48:19 +00:00
|
|
|
Plug 'dag/vim-fish', { 'for': 'fish' }
|
2020-09-20 09:56:51 +00:00
|
|
|
Plug 'chrisbra/Colorizer'
|
2020-10-23 03:48:19 +00:00
|
|
|
Plug 'alvan/vim-closetag', { 'for': ['vue', 'html', 'xml'] }
|
2020-11-03 17:26:57 +00:00
|
|
|
"Plug 'airblade/vim-gitgutter'
|
2020-10-23 03:48:19 +00:00
|
|
|
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
2020-11-05 17:24:45 +00:00
|
|
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
|
|
|
Plug 'junegunn/fzf.vim'
|
2020-06-10 17:04:54 +00:00
|
|
|
call plug#end()
|
|
|
|
|
2020-10-23 03:48:19 +00:00
|
|
|
" ==== vim-markdown configuration ====
|
|
|
|
let g:vim_markdown_folding_disabled = 1
|
|
|
|
|
2020-06-10 17:04:54 +00:00
|
|
|
|
2020-09-25 07:48:12 +00:00
|
|
|
" ==== vim-closetag configuration ====
|
|
|
|
let g:closetag_filetypes = 'html,xhtml,phtml,vue'
|
|
|
|
|
2020-10-23 03:48:19 +00:00
|
|
|
|
2020-11-02 13:43:09 +00:00
|
|
|
if $VIM_MODE == 'enhanced'
|
|
|
|
" ==== coc configuration ====
|
2020-10-29 03:57:00 +00:00
|
|
|
let g:coc_disable_startup_warning = 1
|
|
|
|
set statusline^=%{coc#status()}
|
|
|
|
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)
|
|
|
|
|
|
|
|
xmap <silent> <leader>fs <Plug>(coc-format-selected)
|
|
|
|
nmap <silent> <leader>fs <Plug>(coc-format-selected)
|
|
|
|
nmap <silent> <leader>fb <Plug>(coc-format)
|
|
|
|
nmap <silent> <leader>rn <Plug>(coc-rename)
|
|
|
|
nmap <silent> <leader>ne <Plug>(coc-diagnostic-next-error)
|
|
|
|
nmap <silent> <leader>pe <Plug>(coc-diagnostic-prev-error)
|
|
|
|
nmap <silent> <leader>if :CocInfo<CR>
|
|
|
|
nmap <silent> <leader>cl :CocList<CR>
|
|
|
|
nmap <silent> <leader>sd :call CocAction('doHover')<CR>
|
|
|
|
nmap <silent> <leader>ol <Plug>(coc-openlink)
|
2020-11-03 17:26:57 +00:00
|
|
|
nmap <silent> <leader>oc :CocCommand<CR>
|
2020-11-02 13:43:09 +00:00
|
|
|
|
|
|
|
" ==== vimspector configuration ====
|
|
|
|
let g:vimspector_enable_mappings = 'HUMAN'
|
|
|
|
let g:vimspector_install_gadgets = [ 'debugpy' ]
|
2020-10-29 03:57:00 +00:00
|
|
|
endif
|
2020-09-17 10:24:35 +00:00
|
|
|
|
2020-09-19 10:17:28 +00:00
|
|
|
" ==== auto-pairs configuration ====
|
|
|
|
nmap <silent> <leader>ap :call AutoPairsToggle()<CR>
|
|
|
|
let g:AutoPairsShortcutToggle = ''
|
|
|
|
|
2020-09-17 10:24:35 +00:00
|
|
|
|
|
|
|
" ==== grepper configuration ====
|
2020-06-10 17:04:54 +00:00
|
|
|
nnoremap <leader>sg :Grepper -tool git<CR>
|
|
|
|
nnoremap <leader>sc :Grepper -tool grep<CR>
|
|
|
|
|
|
|
|
|
2020-09-17 10:24:35 +00:00
|
|
|
" ==== NERDTree configuration ====
|
|
|
|
nnoremap <leader>fe :NERDTreeToggle<CR>
|
|
|
|
|
|
|
|
|
2020-06-10 17:04:54 +00:00
|
|
|
" ==== fugitive configuration ====
|
|
|
|
nnoremap <leader>gs :Gstatus<CR>
|
|
|
|
nnoremap <leader>gc :Gcommit<CR>
|
|
|
|
nnoremap <leader>gp :Gpush<CR>
|
|
|
|
nnoremap <leader>gg :Gpull<CR>
|
|
|
|
nnoremap <leader>gd :Gdiff<CR>
|
2020-07-13 08:47:59 +00:00
|
|
|
nnoremap <leader>gb :Gblame<CR>
|
2020-09-28 03:16:59 +00:00
|
|
|
nnoremap <leader>gl :Glog<CR>
|
|
|
|
nnoremap <leader>gms :Gvdiffsplit!<CR>
|
|
|
|
nnoremap <leader>gmh :diffget //2<CR>
|
|
|
|
nnoremap <leader>gml :diffget //3<CR>
|
2020-11-04 07:21:29 +00:00
|
|
|
nnoremap <leader>gsc :exec "!git switch -c " . input("Enter new branch name:")<CR>
|
2020-06-10 17:04:54 +00:00
|
|
|
|
|
|
|
" ==== ctrlp configuration ====
|
2020-10-23 03:48:19 +00:00
|
|
|
"let g:ctrlp_user_command = ['.git', 'git ls-files -co --exclude-standard']
|
|
|
|
|
|
|
|
" ==== fzf configuration ====
|
2020-11-06 17:03:54 +00:00
|
|
|
" enable <C-p> for fzf
|
|
|
|
let g:fugitive_no_maps=1
|
2020-10-23 03:48:19 +00:00
|
|
|
nnoremap <C-p> :FZF<CR>
|
2020-11-05 04:24:22 +00:00
|
|
|
nnoremap <leader>gco :call fzf#run({'source': 'git branch \| cut -c 3-; git tag -l', 'sink': '!git checkout'})<CR>
|
2020-06-11 03:20:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
" ==== gruvbox configuration ====
|
|
|
|
color gruvbox
|
|
|
|
set background=dark
|
|
|
|
highlight Normal ctermbg=None
|
2020-10-07 16:21:32 +00:00
|
|
|
|
|
|
|
" ==== NERDCommenter for vue ====
|
|
|
|
let g:ft = ''
|
|
|
|
fu! NERDCommenter_before()
|
|
|
|
if &ft == 'vue'
|
|
|
|
let g:ft = 'vue'
|
|
|
|
let stack = synstack(line('.'), col('.'))
|
|
|
|
if len(stack) > 0
|
|
|
|
let syn = synIDattr((stack)[0], 'name')
|
|
|
|
if len(syn) > 0
|
|
|
|
let syn = tolower(syn)
|
|
|
|
exe 'setf '.syn
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfu
|
|
|
|
fu! NERDCommenter_after()
|
|
|
|
if g:ft == 'vue'
|
|
|
|
setf vue
|
|
|
|
g:ft
|
|
|
|
endif
|
|
|
|
endfu
|