Skip to content

Instantly share code, notes, and snippets.

@sjovang
Created April 25, 2013 07:41
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 sjovang/5458134 to your computer and use it in GitHub Desktop.
Save sjovang/5458134 to your computer and use it in GitHub Desktop.
" use pathogen for addons
call pathogen#infect()
" encoding
set fileencoding=utf-8
set encoding=utf-8
set termencoding=utf-8
" syntax & line numbers
syntax enable
set number
" colors
set t_Co=256
set background=dark
let g:solarized_termtrans=1
let g:solarized_termcolors=256
let g:solarized_visibility="high"
let g:solarized_contrast="high"
colorscheme solarized
" indenting
set tabstop=2
set expandtab
set shiftwidth=2
set autoindent
set smartindent
" buffers & history
set hidden
set history=1000
" title
set title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment