From e6a89662c737443ef7a6103994d12f82fccc6fdb Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Wed, 23 Dec 2015 01:39:12 +0100 Subject: [PATCH] vimrc --- vim/vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index f3320a4..a4764fa 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -126,6 +126,10 @@ else endif +set showcmd " Show (partial) command in status line. +set showmatch " Show matching brackets. + +set wildmenu " command-line completion operates in an enhanced mode set scrolloff=3 " scroll lines above/below cursor set history=1000 " default 20 set incsearch " "live"-search @@ -149,6 +153,7 @@ autocmd FileType python setlocal expandtab shiftwidth=4 tabstop=4 softtabstop=4 " autocmd FileType json setlocal expandtab shiftwidth=3 tabstop=3 softtabstop=3 + " enable mouse set mouse=nvc