Created
June 20, 2013 14:42
-
-
Save mfrost503/5823325 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 t_Co=256 | |
set background=dark | |
set ruler | |
set number | |
set showcmd | |
set ts=4 | |
set sw=4 | |
encoding=utf-8 | |
set ignorecase | |
set smartcase | |
set gdefault | |
set incsearch | |
set showmatch | |
set hlsearch | |
let g:debuggerPort = "9719" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
filetype plugin indent on
syntax on
" spaces > tabs
set tabstop=2
set shiftwidth=2
set expandtab
set backspace=indent,eol,start
" status bar
set wildmenu
" line numbers
set number