Created
August 9, 2020 03:35
-
-
Save efruchter/1446fe392326de8509f99ca2f98cad7e to your computer and use it in GitHub Desktop.
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
:nmap ; : | |
" tabstop: Width of tab character | |
" softtabstop: Fine tunes the amount of white space to be added | |
" shiftwidth Determines the amount of whitespace to add in normal mode | |
" expandtab: When on uses space instead of tabs | |
set tabstop =4 | |
set softtabstop =4 | |
set shiftwidth =4 | |
set expandtab | |
set number | |
syntax on | |
set bs=2 | |
imap jj <Esc> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment