Compare commits
2 Commits
c9dd000aa2
...
31da5bd7f5
Author | SHA1 | Date | |
---|---|---|---|
31da5bd7f5 | |||
7d0c4f16ff |
@ -11,15 +11,15 @@ let mapleader = "\<Space>"
|
|||||||
let g:python3_host_prog = expand('/usr/bin/python3')
|
let g:python3_host_prog = expand('/usr/bin/python3')
|
||||||
let g:loaded_python_provider = 0
|
let g:loaded_python_provider = 0
|
||||||
let g:python_host_prog = ''
|
let g:python_host_prog = ''
|
||||||
set laststatus=2
|
|
||||||
set autoindent
|
set autoindent
|
||||||
set noexpandtab
|
set noexpandtab
|
||||||
set shiftwidth=4
|
|
||||||
set softtabstop=4
|
set softtabstop=4
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set incsearch
|
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
set noerrorbells
|
||||||
|
set nowrap
|
||||||
|
set hidden
|
||||||
set cmdheight=1
|
set cmdheight=1
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set undofile
|
set undofile
|
||||||
@ -63,9 +63,6 @@ call plug#begin('~/.config/nvim/plugged')
|
|||||||
Plug 'pearofducks/ansible-vim', { 'do': './UltiSnips/generate.sh' }
|
Plug 'pearofducks/ansible-vim', { 'do': './UltiSnips/generate.sh' }
|
||||||
Plug 'Yggdroot/indentLine'
|
Plug 'Yggdroot/indentLine'
|
||||||
|
|
||||||
" coc-cpp coc-c
|
|
||||||
" emerge dev-util/ccls
|
|
||||||
|
|
||||||
" Multiple cursors
|
" Multiple cursors
|
||||||
Plug 'terryma/vim-multiple-cursors'
|
Plug 'terryma/vim-multiple-cursors'
|
||||||
|
|
||||||
@ -118,7 +115,6 @@ nmap <leader>c <Plug>Commentary
|
|||||||
omap <leader>c <Plug>Commentary
|
omap <leader>c <Plug>Commentary
|
||||||
nmap <leader>cc <Plug>CommentaryLine
|
nmap <leader>cc <Plug>CommentaryLine
|
||||||
|
|
||||||
" Tab
|
|
||||||
vnoremap <Tab> >
|
vnoremap <Tab> >
|
||||||
vnoremap <S-Tab> <
|
vnoremap <S-Tab> <
|
||||||
|
|
||||||
@ -187,7 +183,9 @@ set list listchars=nbsp:¬,tab:»·,trail:·,extends:>
|
|||||||
|
|
||||||
" editing
|
" editing
|
||||||
runtime! macros/matchit.vim
|
runtime! macros/matchit.vim
|
||||||
set backspace=indent,eol,start
|
|
||||||
|
" cursor
|
||||||
|
set guicursor=
|
||||||
|
|
||||||
" visual feedback
|
" visual feedback
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
@ -225,6 +223,7 @@ let g:multi_cursor_quit_key = '<Esc>'
|
|||||||
" colors
|
" colors
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
let g:gruvbox_invert_selection='0'
|
let g:gruvbox_invert_selection='0'
|
||||||
|
let g:gruvbox_contrast_dark = 'hard'
|
||||||
set background=dark
|
set background=dark
|
||||||
"hi Normal ctermbg=NONE
|
"hi Normal ctermbg=NONE
|
||||||
hi Pmenu ctermfg=NONE ctermbg=236 cterm=NONE guifg=NONE guibg=#64666d gui=NONE
|
hi Pmenu ctermfg=NONE ctermbg=236 cterm=NONE guifg=NONE guibg=#64666d gui=NONE
|
||||||
|
Loading…
Reference in New Issue
Block a user