mirror of
1
0
Fork 0

Change multiple cursor and colorscheme

This commit is contained in:
jaegukhyun 2022-10-31 00:31:58 +09:00
parent 0faaa354ec
commit f43c38c650
2 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ set guioptions-=L
" Colorscheme
set background=dark
colorscheme gruvbox
colorscheme dracula
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Fast editing and reloading of vimrc configs

View File

@ -101,10 +101,10 @@ autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
let g:multi_cursor_use_default_mapping=0
" Default mapping
let g:multi_cursor_start_word_key = '<C-d>'
let g:multi_cursor_select_all_word_key = '<A-d>'
let g:multi_cursor_start_key = 'g<C-d>'
let g:multi_cursor_select_all_key = 'g<A-d>'
let g:multi_cursor_start_word_key = '<C-n>'
let g:multi_cursor_select_all_word_key = '<A-n>'
let g:multi_cursor_start_key = 'g<C-n>'
let g:multi_cursor_select_all_key = 'g<A-n>'
let g:multi_cursor_next_key = '<C-d>'
let g:multi_cursor_prev_key = '<C-p>'
let g:multi_cursor_skip_key = '<C-x>'