Skip to content

Instantly share code, notes, and snippets.

@samrat
Created January 29, 2012 21:22
Show Gist options
  • Save samrat/1700754 to your computer and use it in GitHub Desktop.
Save samrat/1700754 to your computer and use it in GitHub Desktop.
my vim config. file
call pathogen#infect()
syntax on
filetype plugin indent on
"Basic config.
syntax on " syntax highlighing
filetype on " try to detect filetypes
filetype plugin indent on " enable loading indent file for filetype
set autoindent
set tabstop=4
set shiftwidth=4
set softtabstop=4
"Key mappings
map <c-j> <c-w>j
map <c-k> <c-w>k
map <c-l> <c-w>l
map <c-h> <c-w>h
nnoremap <F5> :GundoToggle<CR>
" Solarized Color Scheme
syntax enable
set background=dark
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment