From 7f213efc34f7c574c1a8286eea5b1c0662430875 Mon Sep 17 00:00:00 2001 From: Alexander Karle Date: Tue, 13 Mar 2018 15:36:23 -0400 Subject: [PATCH] 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! --- vim/vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index a9c7ebb..e6a1466 100644 --- 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 delay +set ttimeout set ttimeoutlen=30 " Source helper files -- libgit2 0.28.4