Skip to content

Instantly share code, notes, and snippets.

@jesgs
Last active December 13, 2015 20:58
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 jesgs/4974185 to your computer and use it in GitHub Desktop.
Save jesgs/4974185 to your computer and use it in GitHub Desktop.
Vim config file
" General
set number
set showbreak=+++
set showmatch
set visualbell
"set mouse=a "for mouse support
set hlsearch
set smartcase
set ignorecase
set incsearch
set expandtab
set softtabstop=4
" Advanced
set ruler
" Enable syntax highlighting and colorscheme
syntax enable
syntax on
colorscheme desert
set background=dark
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
" Use Unix as the standard file type
set ffs=unix,dos,mac
" Undo and backspace settings
set undolevels=1000
set backspace=indent,eol,start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment