Skip to content

Instantly share code, notes, and snippets.

@benjiao
Last active August 15, 2019 12:26
Show Gist options
  • Save benjiao/08432d1377e768c2c4e9 to your computer and use it in GitHub Desktop.
Save benjiao/08432d1377e768c2c4e9 to your computer and use it in GitHub Desktop.
set nocompatible
" Syntax Highlighting
filetype indent plugin on
set syntax=on
" Use case insesitive search
set ignorecase
set smartcase
" Display cursor position
set ruler
" Prompt to save file on exit
set confirm
" Disable beep
set visualbell
" Enable mouse
set mouse=a
" Display line numbers
set number
" Indentation options
set shiftwidth=4
set softtabstop=4
set expandtab
" Highlight cursor line
set cursorline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment