]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Updating files/vimrc-el7 to our needs
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 25 Jun 2020 12:17:25 +0000 (14:17 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 25 Jun 2020 12:17:25 +0000 (14:17 +0200)
files/vimrc-el7

index dbe8caed5c99a3a0a5f054f3e6b44faeb682f941..754f26d67c617b3a5592e32c7fe9efe831d5896e 100644 (file)
@@ -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=\e[4%dm
      set t_Sf=\e[3%dm
 endif