dotfiles/config/nvim/init.vim

131 lines
3.5 KiB
VimL
Raw Normal View History

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
set laststatus=2
2020-06-11 03:20:12 +00:00
set fillchars=vert:\ ,fold:-
2020-06-17 03:13:26 +00:00
set clipboard+=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>
vnoremap <leader>p "_dP
nnoremap <leader>q :qall<CR>
nnoremap <leader>1 :b1
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
if has('nvim')
let vim_plug_path = expand("~/.config/nvim/autoload/plug.vim")
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
call plug#begin()
Plug 'editorconfig/editorconfig-vim'
Plug 'tpope/vim-surround'
2020-06-11 03:22:27 +00:00
Plug 'jiangmiao/auto-pairs'
2020-06-10 17:04:54 +00:00
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'neoclide/coc-json', {'do': 'yarn install --frozen-lockfile'}
Plug 'iamcco/coc-vimlsp', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-python', {'do': 'yarn install --frozen-lockfile'}
Plug 'weirongxu/coc-explorer', {'do': 'yarn install --frozen-lockfile'}
Plug 'liuchengxu/eleline.vim'
Plug 'tpope/vim-fugitive' " git 功能
Plug 'scrooloose/nerdcommenter'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'mhinz/vim-grepper', { 'on': ['Grepper', '<plug>(GrepperOperator)'] }
2020-06-11 03:20:12 +00:00
Plug 'morhetz/gruvbox'
2020-06-10 17:04:54 +00:00
call plug#end()
" ==== coc configuration ====
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>fe :CocCommand explorer --toggle<CR>
nmap <silent> <leader>if :CocInfo<CR>
nmap <silent> <leader>cl :CocList<CR>
2020-06-11 03:20:12 +00:00
nmap <silent> <leader>sd :call CocAction('doHover')<CR>
2020-06-17 03:13:26 +00:00
nmap <silent> <leader>ss :syntax sync fromstart<CR>
2020-06-10 17:04:54 +00:00
nmap <silent> <leader>ol <Plug>(coc-openlink)
nnoremap <leader>sg :Grepper -tool git<CR>
nnoremap <leader>sc :Grepper -tool grep<CR>
" ==== 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>
" ==== ctrlp configuration ====
let g:ctrlp_user_command = ['.git', 'git ls-files -co --exclude-standard']
2020-06-11 03:20:12 +00:00
" ==== gruvbox configuration ====
color gruvbox
set background=dark
highlight Normal ctermbg=None