Last active
March 22, 2017 14:27
-
-
Save paulomendes/276b5d6a1b6280527e6cb4bc7f6ce707 to your computer and use it in GitHub Desktop.
Personal Vimrc
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
syntax on | |
set nocompatible " be iMproved, required | |
filetype off " required | |
filetype plugin indent on " required | |
syntax on | |
set t_Co=256 | |
set number | |
set nu | |
set shiftwidth=2 | |
set tabstop=2 | |
set ai | |
set ci | |
set hls | |
set ruler | |
set wildmenu | |
set smarttab | |
set incsearch | |
set backspace=indent,eol,start | |
au BufNewFile,BufFilePre,BufRead *.md set filetype=markdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment