16 lines
304 B
Text
16 lines
304 B
Text
" some general configuration options
|
|
set number
|
|
set relativenumber
|
|
set clipboard=unnamedplus
|
|
|
|
" disable the timeout option
|
|
set notimeout
|
|
" enable which-key
|
|
set which-key
|
|
|
|
" required by vim-commentary
|
|
filetype plugin indent on
|
|
|
|
" install some plugins
|
|
Plug 'tpope/vim-commentary'
|
|
Plug 'tpope/vim-surround'
|