Skip to content

Instantly share code, notes, and snippets.

@arifulhb
Forked from JeffreyWay/.vimrc
Created July 24, 2016 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arifulhb/5e770c4910609f059826c7a28b38b9f5 to your computer and use it in GitHub Desktop.
Save arifulhb/5e770c4910609f059826c7a28b38b9f5 to your computer and use it in GitHub Desktop.
Laracasts: Vim Mastery - Episode 3 .vimrc progress
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