Last active
August 29, 2015 14:03
-
-
Save zeroseis/6c1dd9c91e48406c6dd3 to your computer and use it in GitHub Desktop.
My Vim preferences
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
" turn on syntax color | |
syntax on | |
" Use spaces for indenting | |
set expandtab | |
" turn off line wraping | |
set nowrap | |
" tab size | |
set tabstop=4 | |
" size of an indent | |
set shiftwidth=4 | |
" auto indenting | |
set smartindent | |
" case insensitive searching by default | |
set ignorecase smartcase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment