Last active
May 25, 2022 23:41
-
-
Save cdolan/25adb0f9f7e5a1402c2eb109e787b4b9 to your computer and use it in GitHub Desktop.
minimal neovim config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" mappings | |
inoremap jj <Esc> | |
nnoremap ! : !<Space> | |
nnoremap , : ,<Space> | |
nnoremap ; :<Space> | |
" settings | |
set clipboard+=unnamedplus | |
set number | |
set ruler | |
set termguicolors | |
" plugins: https://github.com/junegunn/vim-plug | |
call plug#begin() | |
Plug 'tpope/vim-commentary' | |
Plug 'tpope/vim-endwise' | |
Plug 'tpope/vim-surround' | |
call plug#end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installation
From https://github.com/junegunn/vim-plug
Customization
Please use this as a template for your own config.