Skip to content

Instantly share code, notes, and snippets.

@abatkin
Created June 21, 2012 03:57
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 abatkin/2963742 to your computer and use it in GitHub Desktop.
Save abatkin/2963742 to your computer and use it in GitHub Desktop.
Home vimrc (on linux)
call pathogen#infect()
syntax enable
filetype plugin indent on
set nocompatible
"if filereadable("$VIMRUNTIME/mswin.vim")
:so $VIMRUNTIME/mswin.vim
"endif
:behave mswin
set background=dark
if has("gui_running")
set nu
set guifont=Liberation\ Mono\ for\ Powerline\ 9
set guioptions-=T
set lines=50
set columns=140
let g:Powerline_symbols = 'fancy'
colorscheme abbott
else
let g:Powerline_symbols = 'compatible'
set t_Co=256
colorscheme vividchalk
endif
set shiftwidth=2
set tabstop=2
set expandtab
set noautowrite
set hidden
set autoindent smartindent
set smarttab
set history=200
set incsearch
set ignorecase
set hlsearch
set showmatch
set nobackup
set encoding=utf-8
set laststatus=2
set wildignore=*.swp,*.zip,.svn/*,*.class,*.jar
vmap <Tab> >gv
vmap <S-Tab> <gv
let g:buffergator_viewport_split_policy = "B"
let g:buffergator_autoexpand_on_split = 0
let g:buffergator_split_size = 0
let g:buffergator_sort_regime = "mru"
let g:ctrlp_mruf_case_sensitive = 0
let g:ctrlp_mruf_last_entered = 1
let g:ctrlp_dotfiles = 0
let g:ctrlp_working_path_mode = 0
let g:syntastic_perl_efm_program = 'perl /usr/share/vim/vimfiles/perl-support/scripts/efm_perl.pl -c'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment