Created
April 19, 2015 02:53
-
-
Save jpleau/f490a566400eb402a624 to your computer and use it in GitHub Desktop.
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
" toggle relativenumber (on by default) | |
set rnu | |
function! numbertoggle() | |
if(&relativenumber == 1) | |
set nornu | |
else | |
set rnu | |
endif | |
endfunc | |
nnoremap <c-n> :call numbertoggle()<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment