Skip to content

Instantly share code, notes, and snippets.

@charz
Last active August 29, 2015 13:56
Show Gist options
  • Save charz/9319423 to your computer and use it in GitHub Desktop.
Save charz/9319423 to your computer and use it in GitHub Desktop.
My vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'Lokaltog/vim-powerline'
Bundle 'tpope/vim-fugitive'
Bundle 'vim-scripts/indent-motion'
Bundle 'mileszs/ack.vim'
Bundle 'hrp/EnhancedCommentify'
set laststatus=2
set t_Co=256
let g:Powline_symbols='fancy'
let g:EasyMotion_leader_key=','
filetype plugin indent on
set backspace=2
set ts=8
set sw=4
set ts=4
set et
set hls
set autoindent
set nu
syntax on
syntax enable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment