Skip to content

Instantly share code, notes, and snippets.

@akluth
Created September 13, 2013 11:37
Show Gist options
  • Save akluth/6549573 to your computer and use it in GitHub Desktop.
Save akluth/6549573 to your computer and use it in GitHub Desktop.
.vimrc
if $TERM == "xterm-256color"
set t_Co=256
endif
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
""" Custom Bundles
Bundle 'Lokaltog/vim-powerline'
Bundle "http://github.com/mattn/gist-vim.git"
Bundle "scrooloose/nerdtree"
Bundle "majutsushi/tagbar"
Bundle "gregsexton/gitv"
Bundle "tpope/vim-fugitive"
Bundle "vimoutliner/vimoutliner"
"""
filetype plugin indent on
au BufNewFile,BufRead *.php set filetype=php
au BufNewFile,BufRead *.io set filetype=io
set ruler
set cursorline
set number
syntax on
set expandtab
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set nocompatible
set laststatus=2
set encoding=utf-8
map <F7> :NERDTreeToggle<CR>
map <F8> :TagbarToggle<CR>
map <F9> :gitv<CR>
colorscheme wombat256mod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment