Created
July 24, 2018 14:44
-
-
Save ericchiang/98e205d0fb8bfec622b247e4a0dd7290 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
filetype plugin indent on " activate filetype plugins | |
set backspace=2 " backspace in insert mode works like normal editor | |
" set autoindent " auto indenting | |
set number " line numbers | |
colorscheme default " colorscheme | |
set nobackup " get rid of anoying ~file | |
set clipboard=unnamed " use system clipboard for copying | |
set shiftwidth=4 " default shift width | |
set expandtab " expand tabs to spaces | |
set tabstop=4 " set tabwidth to 4 | |
set noeol " no new line at end of file | |
syntax off " syntax highlighting | |
highlight clear LineNr " no highlighting of line number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment