nix-config/home-manager/sajenim/features/editors/ideavimrc
2025-06-22 13:15:54 +08:00

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'