Skip to content

Commit

Permalink
Add numbers.vim to vundles.list
Browse files Browse the repository at this point in the history
numbers.vim is a plugin that allows for easy switch between
absolute and relative line numbers.
A convenient shortcut: ,tn (toggle numbers) is provided to
switch between the two modes

Fixes #276
  • Loading branch information
FWFabio committed Apr 9, 2013
1 parent c10e95b commit 23a9e72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -211,6 +211,8 @@ If you omit the key combo, you'll get a list of all the maps. You can do the sam
* `Cmd-j` and `Cmd-k` to move up and down roughly by functions
* `Ctrl-o` - Old cursor position - this is a standard mapping but very useful, so included here
* `Ctrl-i` - opposite of Ctrl-O (again, this is standard)
* `,tn` - Toggles between absolute and relative line numbers
* `:NumbersEnable` - Enable automatic toggling between absolute (insert mode) and relative (normal mode) line numbers

#### LustyJuggler

Expand Down
1 change: 1 addition & 0 deletions vim/plugin/settings/yadr-numbers.vim
@@ -0,0 +1 @@
:nnoremap <silent> ,tn :NumbersToggle<CR>
1 change: 1 addition & 0 deletions vim/vundles.vim
Expand Up @@ -102,5 +102,6 @@ Bundle "airblade/vim-gitgutter.git"
Bundle "bogado/file-line.git"
Bundle "tpope/vim-rvm.git"
Bundle "nelstrom/vim-visual-star-search"
Bundle "myusuf3/numbers.vim.git"
"Filetype plugin indent on is required by vundle
filetype plugin indent on

0 comments on commit 23a9e72

Please sign in to comment.