dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 7f213efc34f7c574c1a8286eea5b1c0662430875 (patch)
parent b9324d1735120dc978d675821c0ed2d1140ac3d7
Author: Alexander Karle <akarle@umass.edu>
Date:   Tue, 13 Mar 2018 15:36:23 -0400

Adding some defaults to vimrc inspired by defaults.vim

Vim 8 adds a default vimrc if none is loaded; I gave it
a readthrough and decided to update some things!

Diffstat:
Mvim/vimrc | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/vim/vimrc b/vim/vimrc @@ -18,8 +18,9 @@ set smarttab "backspace should function as expected set backspace=indent,eol,start -"search highlighting +"search highlighting and incremental search set hlsearch +set incsearch set rtp+=/usr/local/opt/fzf filetype plugin indent on @@ -46,11 +47,13 @@ set noequalalways " Show the command being typed set showcmd +set history=1000 " More visual completion for command mode set wildmenu " Set key code timeout to be less to avoid <ESC> delay +set ttimeout set ttimeoutlen=30 " Source helper files