Skip to content

Instantly share code, notes, and snippets.

@tschwaerzl
Created November 5, 2013 22:21
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 tschwaerzl/7327383 to your computer and use it in GitHub Desktop.
Save tschwaerzl/7327383 to your computer and use it in GitHub Desktop.
.vimrc config
execute pathogen#infect()
set nocompatible
syntax on
filetype plugin indent on
set nowrap
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set laststatus=2
set background=dark
if !has('gui_running')
let g:solarized_termtrans=1
if (&t_Co >= 256 || $TERM == 'xterm-256color')
" nothing
else
let g:solarized_termcolors=16
endif
endif
colorscheme solarized
set number
set ruler
set cursorline
set encoding=utf-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment