From 8ee75c41bf4588b18dbd5cd0f5daa1ea21f3c11a Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Fri, 18 Aug 2023 11:36:52 +0100 Subject: [PATCH] [18/08/23] updated file from work computer --- .vimrc | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index e962377..807cc63 100644 --- a/.vimrc +++ b/.vimrc @@ -1,22 +1,36 @@ +" filetype + highlighting filetype on filetype plugin on filetype indent on - syntax on - set number - set cursorline set cursorcolumn +" wildmenu set wildmenu set wildmode=list:longest set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx +" plugins call plug#begin() Plug 'morhetz/gruvbox' Plug 'vim-airline/vim-airline' call plug#end() +" colours colorscheme gruvbox set bg=dark +set termguicolors + +" backspace fix on windows +set nocompatible +set backspace=indent,eol,start + +" wrap text and split on words +set wrap +set linebreak +set nolist + +" don't show mode as it is shown in airline +set noshowmode