From db41394bfb60d569249626b8433342c82673d427 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Mon, 9 Sep 2013 16:02:42 -0500 Subject: [PATCH] Add absolute line number remove toggle as it is no longer needed --- vim/vim.symlink/functions.vim | 9 --------- vim/vimrc.symlink | 1 + 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/vim/vim.symlink/functions.vim b/vim/vim.symlink/functions.vim index 9d3e310..c2595df 100644 --- a/vim/vim.symlink/functions.vim +++ b/vim/vim.symlink/functions.vim @@ -13,15 +13,6 @@ function! WinMove(key) endif endfunction -" toggle relative line numbers -function! ToggleNuMode() - if (&rnu == 1) - setlocal nu - else - setlocal rnu - endif -endfunction - " tell me what syntax group the word below the cursor belongs to function! SynStack() if !exists("*synstack") diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 1656e59..a5f0c72 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -132,6 +132,7 @@ colorscheme solarized " set number " show line numbers set relativenumber " show relative line numbers +set number set wrap " turn on line wrapping "set nowrap "turn off line wrapping