Created
April 26, 2015 01:50
-
-
Save adeekshith/5360476a614f6cb7c6bc to your computer and use it in GitHub Desktop.
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
" My .vimrc | |
" Author: Deekshith Allamaneni | |
" Launch configurration | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
" Colors | |
syntax enable | |
set background=dark | |
colorscheme solarized | |
" Spaces and tabs | |
set tabstop=4 " number of visual spaces per TAB | |
set softtabstop=4 " number of spaces in tab when editing | |
set expandtab " tabs are spaces. | |
" UI Config | |
set number " show line numbers | |
set showcmd " show command in bottom bar | |
set cursorline " highlight current line | |
filetype indent on " load filetype-specific indent files | |
set wildmenu " visual autocomplete for command menu | |
set lazyredraw " redraw only when we need to | |
set showmatch " highlight matching [{()}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment