[18/08/23] updated file from work computer
This commit is contained in:
parent
11af1b94ea
commit
8ee75c41bf
20
.vimrc
20
.vimrc
@ -1,22 +1,36 @@
|
|||||||
|
" filetype + highlighting
|
||||||
filetype on
|
filetype on
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
filetype indent on
|
filetype indent on
|
||||||
|
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
set number
|
set number
|
||||||
|
|
||||||
set cursorline
|
set cursorline
|
||||||
set cursorcolumn
|
set cursorcolumn
|
||||||
|
|
||||||
|
" wildmenu
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set wildmode=list:longest
|
set wildmode=list:longest
|
||||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||||
|
|
||||||
|
" plugins
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'morhetz/gruvbox'
|
Plug 'morhetz/gruvbox'
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
" colours
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
set bg=dark
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user