Complete deploy.sh, update vimrc
This commit is contained in:
16
vim/.vimrc
16
vim/.vimrc
@@ -30,7 +30,6 @@ set undofile
|
||||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'valloric/MatchTagAlways'
|
||||
Plug 'tyru/caw.vim'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
" For func argument completion
|
||||
Plug 'christoomey/vim-conflicted'
|
||||
@@ -82,19 +81,14 @@ nnoremap ; :
|
||||
|
||||
|
||||
iabbrev <// </<C-X><C-O>
|
||||
let g:indentLine_char = '▏'
|
||||
let g:indentLine_char = '|'
|
||||
|
||||
set termguicolors
|
||||
let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
|
||||
let &t_8b = "\<Esc>[48:2:%lu:%lu:%lum"
|
||||
set colorcolumn=80
|
||||
colorscheme Tomorrow-Night-Bright
|
||||
|
||||
let g:gitgutter_sign_added = '▐ '
|
||||
let g:gitgutter_sign_modified = '▐ '
|
||||
let g:gitgutter_sign_removed = '▐ '
|
||||
let g:gitgutter_sign_removed_first_line = '▐▌'
|
||||
let g:gitgutter_sign_modified_removed = '▐▌'
|
||||
let g:netrw_banner=0
|
||||
let g:airline_powerline_fonts = 1
|
||||
let g:airline_theme='wombat'
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
|
||||
@@ -104,7 +98,6 @@ let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standar
|
||||
" Toggle spell checking on and off with `,s`
|
||||
let mapleader = ","
|
||||
nmap <silent> <leader>s :set spell!<CR>
|
||||
nmap <leader>v :tabedit $MYVIMRC<CR>
|
||||
nmap <leader>u :MundoToggle<CR>
|
||||
|
||||
" Restore cursor position
|
||||
@@ -112,6 +105,3 @@ autocmd BufReadPost *
|
||||
\ if line("'\"") > 1 && line("'\"") <= line("$") |
|
||||
\ exe "normal! g`\"" |
|
||||
\ endif
|
||||
|
||||
let g:airline_section_error = '%{airline#util#wrap(airline#extensions#coc#get_error(),0)}'
|
||||
let g:airline_section_warning = '%{airline#util#wrap(airline#extensions#coc#get_warning(),0)}'
|
||||
|
||||
Reference in New Issue
Block a user