Created
September 20, 2013 19:20
-
-
Save BenDavidJamin/6642481 to your computer and use it in GitHub Desktop.
My vimrc settings
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 line numbering. Turn it off set "set nonu" | |
set nu | |
" Set syntax on | |
syntax on | |
" Indent automtically depending on filetype | |
filetype indent on | |
set autoindent | |
set smartindent | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
" Highlight search | |
set hls | |
" Wrap text instead of being on one line | |
set lbr | |
" Chnage colorscheme from default to delek | |
colorscheme delek |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment