Skip to content

Instantly share code, notes, and snippets.

@louishuyng
Created January 7, 2024 09:56
Show Gist options
  • Save louishuyng/958bd64c23cd463a74207015aa4ea4ca to your computer and use it in GitHub Desktop.
Save louishuyng/958bd64c23cd463a74207015aa4ea4ca to your computer and use it in GitHub Desktop.
Basic Vim Setup on Linux
set tabstop=2 softtabstop=2 shiftwidth=2
set expandtab
set number ruler
set autoindent smartindent
syntax enable
filetype plugin indent on
nnoremap <space>w :w<CR>
nnorempa <space>q :wq!<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment