Created
November 5, 2013 22:21
-
-
Save tschwaerzl/7327383 to your computer and use it in GitHub Desktop.
.vimrc config
This file contains 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
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