From c8770c267330179e545319abeee77ec6f2d569b7 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 1 Jun 2020 17:59:48 +0100 Subject: [PATCH] Changes to .vimrc. Added cursorline and better search features. --- .vimrc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.vimrc b/.vimrc index 3afcd30..2e4fc8f 100644 --- a/.vimrc +++ b/.vimrc @@ -1,7 +1,12 @@ " Vim settings -set tabstop =4 -syntax on -set number +set tabstop =4 " The amount of spaces per tab +syntax on " Syntax highlighting +set number " Line numbers +set cursorline " Shows a line on the cursor's line -" Fancy colorColumn +" Search settings +set incsearch " Search as characters are entered +set hlsearch " Highlight all matches + +" Changes colorcolumn per line that hits 81 characters call matchadd('ColorColumn', '\%81v', 100)