aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-05-21 13:47:47 -0400
committertdro <tdro@users.noreply.github.com>2020-05-21 13:47:47 -0400
commitfaf508b013f6c090796e9b8e22649e956d972d13 (patch)
treeba60082cb9c0221256f899d3b42369e08eaf688e /.vimrc
parentdfa62f83847cdfd920d8eafd839b8aca9aec8e3d (diff)
downloaddotfiles-faf508b013f6c090796e9b8e22649e956d972d13.tar.gz
dotfiles-faf508b013f6c090796e9b8e22649e956d972d13.tar.bz2
dotfiles-faf508b013f6c090796e9b8e22649e956d972d13.zip
.vimrc: Set notimeout and showcmd
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc8
1 files changed, 5 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
index 4cf458f..a2f98ff 100644
--- a/.vimrc
+++ b/.vimrc
@@ -27,6 +27,8 @@ set nocompatible " Use Vim defaults.
set splitbelow " Open horizontal splits below.
set splitright " Open vertical splits to the right.
set cursorline " Set cursor line highlight.
+set notimeout " Wait indefinitely for complete key combinations.
+set showcmd " Show key presses in status line.
set hidden " Set hidden buffers.
set nobackup " No write backups.
@@ -39,9 +41,9 @@ set autoindent " Copy indent from current line to new
set ignorecase " Ignore case on search.
set smartcase " Search by case smartly.
set lazyredraw " Do not redraw screen when using macros.
-set undofile " Enable undofile
-set viminfo+=n~/.vim/viminfo " Set viminfo file path
-set undodir=~/.vim/undodir " Set undofile directory
+set undofile " Enable undofile.
+set viminfo+=n~/.vim/viminfo " Set viminfo file path.
+set undodir=~/.vim/undodir " Set undofile directory.
set mouse=a " Enable mouse.
set shortmess+=I " Disable startup message.