Skip to content

Instantly share code, notes, and snippets.

@ryanapilado
Created September 24, 2019 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanapilado/b0a948baf398c684a8f37da558cc37c1 to your computer and use it in GitHub Desktop.
Save ryanapilado/b0a948baf398c684a8f37da558cc37c1 to your computer and use it in GitHub Desktop.
syntax enable
" COLORS
colorscheme darkblue
" SPACES AND TABS
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set shiftwidth=4
set expandtab " tabs are spaces
set autoindent " next line has same indentation as previous
set mouse=a
" UI CONFIG
set number " show line numbers
set showcmd " show command in bottom bar
set cursorline " highlight current line
" MAPS
nmap <S-Enter> O<Esc> " Insert new line above with SHIFT + ENTER
nmap <CR> o<Esc> " Insert new line below with ENTER.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment