Skip to content

Instantly share code, notes, and snippets.

@zvakanaka
Last active September 10, 2024 19:00
Show Gist options
  • Save zvakanaka/2144cc15c772b6588b78365ff3154f85 to your computer and use it in GitHub Desktop.
Save zvakanaka/2144cc15c772b6588b78365ff3154f85 to your computer and use it in GitHub Desktop.
" vertical bar as cursor in insert mode
let &t_SI = "\e[6 q"
let &t_EI = "\e[2 q"
" allow mouse
set mouse=a
" sync copy/paste with system clipboard (may need unnamedplus on Linux)
set clipboard+=unnamed
" display line numbers
set nu
" save with space+w in normal mode
nnoremap <space>w :w<CR>
" ctrl+s to save in normal and insert modes
nnoremap <C-S> :update<cr>
inoremap <C-S> <Esc>:update<cr>
" quit with space q in normal mode
nnoremap <space>q :q<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment