From 86f70cbd81a16e0b39744e908468ff2b16d4e3cc Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 22 Apr 2021 21:40:58 +0200 Subject: [PATCH] improved the VIMRC --- scripts/config/vimrc.txt | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/scripts/config/vimrc.txt b/scripts/config/vimrc.txt index 2a085aa..042c1ae 100644 --- a/scripts/config/vimrc.txt +++ b/scripts/config/vimrc.txt @@ -4,16 +4,13 @@ " " """"""""""""""""""""""""""""""" -set showmode +set showmode "Always show mode set history=700 "Sets how many lines of history VIM has to remember set ttimeoutlen=50 "Speed up O etc in the Terminal set autoread "Set to auto read when a file is changed from the outside set bs=2 "allow backspace set scrolloff=6 "start scrolling 5 lines before edge of viewport -"Better paste behavior -nnoremap :set invpaste paste? -set pastetoggle= "Search Options set ignorecase "Ignore case when searching @@ -25,22 +22,40 @@ set nobackup set nowb set noswapfile + """"""""""""""""""""""""""""""" " " " Spacing and Lines " " " """"""""""""""""""""""""""""""" +"Show cursorline +set cursorline + +"Toggle cursorline on f8 +nnoremap :set invcursorline cursorline? + "Show line numbers set number "Toggle line numbers on f9 nnoremap :set invnumber number? +"Set paste mode +set paste + +"Toggle paste mode on f10 +nnoremap :set invpaste paste? + "Transform tabs to spaces -set tabstop=8 -set shiftwidth=8 -set expandtab +set expandtab + +"Other tabs settings +set smarttab +set tabstop=4 +set softtabstop=4 +set shiftwidth=4 +set shiftround "Code formatting set autoindent @@ -51,9 +66,12 @@ set wrap "Use system clipboard set clipboard=unnamed -" disable bell and flashing +"Disable bell and flashing set noerrorbells visualbell t_vb= +"Set lines to yank between files +set viminfo+=<1000 + """"""""""""""""""""""""""""""" " " @@ -100,8 +118,9 @@ set statusline+=\ %-40F set statusline+=%= "move to right set statusline+=%5* "switch to User5 highlight -set statusline+=\ F9=linenumbers "user help -set statusline+=\ F10=pastemode\ "user help +set statusline+=\ F8=cline "user help +set statusline+=\ F9=numbers "user help +set statusline+=\ F10=paste\ "user help set statusline+=%2* "switch to User2 highlight set statusline+=\ %{&fileencoding?&fileencoding:&encoding}