Skip to content

Instantly share code, notes, and snippets.

@nicoaudy
Last active March 28, 2017 05:46
Show Gist options
  • Save nicoaudy/7c504e042be57f623d0d3f10e6fbb23a to your computer and use it in GitHub Desktop.
Save nicoaudy/7c504e042be57f623d0d3f10e6fbb23a to your computer and use it in GitHub Desktop.
syntax enable
colorscheme desert
"-------------General Settings--------------"
set backspace=indent,eol,start "Make backspace behave like every other editor.
let mapleader = ',' "The default leader is \, but a comma is much better.
set number "Let's activate line numbers.
set linespace=15 "Macvim-specific line-height.
"-------------Search--------------"
set hlsearch
set incsearch
"-------------Mappings--------------"
"Make it easy to edit the Vimrc file.
nmap <Leader>ev :tabedit $MYVIMRC<cr>
"Add simple highlight removal.
nmap <Leader><space> :nohlsearch<cr>
"-------------Auto-Commands--------------"
"Automatically source the Vimrc file on save.
augroup autosourcing
autocmd!
autocmd BufWritePost .vimrc source %
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment