Skip to content

Instantly share code, notes, and snippets.

@jpleau
Created April 19, 2015 02:53
Show Gist options
  • Save jpleau/f490a566400eb402a624 to your computer and use it in GitHub Desktop.
Save jpleau/f490a566400eb402a624 to your computer and use it in GitHub Desktop.
" 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