Vim set hidden

This commit is contained in:
Sonny Bakker 2017-10-31 21:23:07 +01:00
parent b1c6689d2a
commit 009040a004

View file

@ -8,6 +8,9 @@ set encoding=utf-8
" syntax on
syntax on
" switch buffers without writing to file
set hidden
" remove trailing spaces on save
autocmd BufWritePre * :%s/\s\+$//e