Created
October 19, 2010 16:51
-
-
Save eugene-dounar/634550 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
set nocompatible | |
set hidden | |
filetype on | |
filetype plugin on | |
filetype indent on | |
" Look stuff | |
set showmode | |
set showcmd | |
set wildmenu | |
set mousehide | |
set guioptions=aic | |
if has("gui_running") | |
colorscheme xoria256 | |
endif | |
" Search | |
set incsearch | |
set hlsearch | |
" Editing behaviour | |
set scrolloff=8 | |
set virtualedit=all | |
" Coding style | |
syntax on | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
" | |
" Key mappings | |
" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment