Last active
December 13, 2015 20:58
-
-
Save jesgs/4974185 to your computer and use it in GitHub Desktop.
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
" General | |
set number | |
set showbreak=+++ | |
set showmatch | |
set visualbell | |
"set mouse=a "for mouse support | |
set hlsearch | |
set smartcase | |
set ignorecase | |
set incsearch | |
set expandtab | |
set softtabstop=4 | |
" Advanced | |
set ruler | |
" Enable syntax highlighting and colorscheme | |
syntax enable | |
syntax on | |
colorscheme desert | |
set background=dark | |
" Set utf8 as standard encoding and en_US as the standard language | |
set encoding=utf8 | |
" Use Unix as the standard file type | |
set ffs=unix,dos,mac | |
" Undo and backspace settings | |
set undolevels=1000 | |
set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment