Skip to content

Instantly share code, notes, and snippets.

@itsthatguy
Last active August 29, 2015 14:21
Show Gist options
  • Save itsthatguy/eacc913115de9ebdc32d to your computer and use it in GitHub Desktop.
Save itsthatguy/eacc913115de9ebdc32d to your computer and use it in GitHub Desktop.

Relative numbers in vim when in normal mode, and absolute in insert mode

autocmd InsertEnter * :set relativenumber! number
autocmd InsertLeave * :set number! relativenumber

Relative line snafu:

Yank the line 10 up from your cursor with :-10y Yank the line 3 down from your cursor with :+3y

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment