From f1b0f0f30996e1114252bacaf8b170349d61c854 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 28 Oct 2017 22:00:45 +1300 Subject: Move command .vimrc config into subfile A little bit iffy on the grouping here, but it's still better than having it all lumped in the one file. --- vim/vimrc | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'vim/vimrc') diff --git a/vim/vimrc b/vim/vimrc index 55631d37..38ecabf1 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -41,18 +41,6 @@ if has('file_in_path') set path=** endif -" Command-line based features -if has('cmdline_info') - - " Show my current position in the status bar - set ruler - " Show the keystrokes being entered in the screen - set showcmd - - " Show the mode we're using if not normal mode (e.g. --INSERT--) - set showmode -endif - " Don't try to complete strings from included files, just use the strings in " the open buffers; I'll open the file if I want to complete from it set complete-=i @@ -66,9 +54,6 @@ set fileformats+=mac " to it; note that it wipes out your z mark, if you happen to use it nnoremap J mzJ`z -" Keep plenty of command and search history, because disk space is cheap -set history=2000 - " Try to run the version of matchit.vim included in the distribution, if there " is one; extends % to match more than it does by default silent! runtime macros/matchit.vim @@ -92,9 +77,6 @@ set nomodeline " zero-padded decimal, so increment and decrement with ^A and ^X on that basis set nrformats-=octal -" Always tell me the number of lines changed by a command -set report=0 - " Always use forward slashes, I very seldom need to use Vim on Windows for " more than scratch space anyway set shellslash @@ -125,21 +107,6 @@ set sidescrolloff=16 nnoremap & :&& vnoremap & :&& -" Tolerate typos like :Wq, :Q, or :Qa and do what I mean, including any -" arguments or modifiers; I fat-finger these commands a lot because I type -" them so rapidly, and they don't correspond to any other commands I use -if has('user_commands') - command! -bang -complete=file -nargs=? E e - command! -bang -complete=file -nargs=? W w - command! -bang -complete=file -nargs=? WQ wq - command! -bang -complete=file -nargs=? Wq wq - command! -bang Q q - command! -bang Qa qa - command! -bang QA qa - command! -bang Wa wa - command! -bang WA wa -endif - " When in visual block mode, let me move the cursor anywhere in the buffer; " don't restrict me only to regions with text if has('virtualedit') -- cgit v1.2.3