Last active
December 17, 2015 23:09
-
-
Save ambakshi/5687048 to your computer and use it in GitHub Desktop.
Basic vimrc
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
set nocompatible | |
filetype plugin indent on | |
" set t_Co=256 | |
set t_Co=8 | |
syntax on | |
set bs=indent,eol,start | |
set ts=4 sts=4 expandtab shiftround smarttab shiftwidth=4 | |
set hlsearch showmatch ignorecase incsearch smartcase | |
set noerrorbells | |
set showcmd title cmdheight=2 | |
if has('mouse') | |
set mouse=a | |
endif | |
colorscheme darkblue | |
au FileType perl setl sw=8 ts=8 sts=8 noet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment