Created
June 18, 2009 15:57
-
-
Save albertoperdomo/131969 to your computer and use it in GitHub Desktop.
.vimrc
This file contains 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 | |
set tabstop=2 | |
set shiftwidth=2 | |
set hlsearch | |
set ignorecase | |
set ttyfast | |
set autoindent | |
set smartindent | |
set smarttab | |
set expandtab | |
set backspace=start,indent | |
set number | |
set hlsearch | |
set background=dark | |
syntax on | |
colorscheme ir_black | |
"folding settings | |
set foldmethod=indent "fold based on indent | |
set foldnestmax=10 "deepest fold is 10 levels | |
set nofoldenable "dont fold by default | |
set foldlevel=1 "this is just what i use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment