Created
January 29, 2012 21:22
-
-
Save samrat/1700754 to your computer and use it in GitHub Desktop.
my vim config. file
This file contains hidden or 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
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