improved the VIMRC

This commit is contained in:
Michael H.G. Schmidt 2021-04-22 21:40:58 +02:00
parent e4e631d74c
commit 86f70cbd81

View File

@ -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 history=700 "Sets how many lines of history VIM has to remember
set ttimeoutlen=50 "Speed up O etc in the Terminal 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 autoread "Set to auto read when a file is changed from the outside
set bs=2 "allow backspace set bs=2 "allow backspace
set scrolloff=6 "start scrolling 5 lines before edge of viewport set scrolloff=6 "start scrolling 5 lines before edge of viewport
"Better paste behavior
nnoremap <f10> :set invpaste paste?<CR>
set pastetoggle=<f10>
"Search Options "Search Options
set ignorecase "Ignore case when searching set ignorecase "Ignore case when searching
@ -25,22 +22,40 @@ set nobackup
set nowb set nowb
set noswapfile set noswapfile
""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""
" " " "
" Spacing and Lines " " Spacing and Lines "
" " " "
""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""
"Show cursorline
set cursorline
"Toggle cursorline on f8
nnoremap <f8> :set invcursorline cursorline?<CR>
"Show line numbers "Show line numbers
set number set number
"Toggle line numbers on f9 "Toggle line numbers on f9
nnoremap <f9> :set invnumber number?<CR> nnoremap <f9> :set invnumber number?<CR>
"Set paste mode
set paste
"Toggle paste mode on f10
nnoremap <f10> :set invpaste paste?<CR>
"Transform tabs to spaces "Transform tabs to spaces
set tabstop=8 set expandtab
set shiftwidth=8
set expandtab "Other tabs settings
set smarttab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set shiftround
"Code formatting "Code formatting
set autoindent set autoindent
@ -51,9 +66,12 @@ set wrap
"Use system clipboard "Use system clipboard
set clipboard=unnamed set clipboard=unnamed
" disable bell and flashing "Disable bell and flashing
set noerrorbells visualbell t_vb= 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+=%= "move to right
set statusline+=%5* "switch to User5 highlight set statusline+=%5* "switch to User5 highlight
set statusline+=\ F9=linenumbers "user help set statusline+=\ F8=cline "user help
set statusline+=\ F10=pastemode\ "user help set statusline+=\ F9=numbers "user help
set statusline+=\ F10=paste\ "user help
set statusline+=%2* "switch to User2 highlight set statusline+=%2* "switch to User2 highlight
set statusline+=\ %{&fileencoding?&fileencoding:&encoding} set statusline+=\ %{&fileencoding?&fileencoding:&encoding}