From 59d6b99929c851baa9eebad16dbc52f5ead4085d Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 25 Jun 2020 14:17:25 +0200 Subject: [PATCH] Updating files/vimrc-el7 to our needs --- files/vimrc-el7 | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/files/vimrc-el7 b/files/vimrc-el7 index dbe8cae..754f26d 100644 --- a/files/vimrc-el7 +++ b/files/vimrc-el7 @@ -2,14 +2,37 @@ if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=ucs-bom,utf-8,latin1 endif -set nocompatible " Use Vim defaults (much better!) +set nocompatible " Use Vim defaults (much better!) set bs=indent,eol,start " allow backspacing over everything in insert mode -"set ai " always set autoindenting on -"set backup " keep a backup file -set viminfo='20,\"50 " read/write a .viminfo file, don't store more - " than 50 lines of registers -set history=50 " keep 50 lines of command line history -set ruler " show the cursor position all the time +"set ai " always set autoindenting on +set noai " always set autoindenting off +"set backup " keep a backup file +set viminfo='20,\"50 " read/write a .viminfo file, don't store more + " than 50 lines of registers +set history=50 " keep 50 lines of command line history +set ruler " show the cursor position all the time + +set modeline +set showmatch +set ignorecase + +if has("multi_byte") + set encoding=utf-8 + setglobal fileencoding=utf-8 + set listchars=tab:»·,trail:·,nbsp:⎵ +else + echoerr "Sorry, this version of (g)vim was not compiled with +multi_byte" + set listchars=tab:>-,trail:. +endif + +color delek + +syntax on + +" Always show statusline +set laststatus=2 + +set t_Co=256 " Only do this part when compiled with support for autocommands if has("autocmd") @@ -48,13 +71,14 @@ endif " Also switch on highlighting the last used search pattern. if &t_Co > 2 || has("gui_running") syntax on - set hlsearch + " set hlsearch + set nohlsearch endif filetype plugin on if &term=="xterm" - set t_Co=8 + " set t_Co=8 set t_Sb=[4%dm set t_Sf=[3%dm endif -- 2.39.5