Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI e8652cbc16 home: vim: enable swap and undo files
Trying it on for size, since NeoVim does use XDG directories for those.
2024-07-10 22:47:14 +01:00
Bruno BELANYI ace6212f49 home: vim: remove redundant 'nobackup'
It's already the default.
2024-07-10 22:45:48 +01:00

View file

@ -38,10 +38,10 @@ set tabstop=8
" File parameters {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Disable backups, we have source control for that
set nobackup
" Disable swapfiles too
set noswapfile
" Enable swap files
set swapfile
" And undo files
set undofile
" }}}
" UI and UX parameters {{{