Update minimal-vimrc.vim

- The forward slash (/) is not necessary at the end of the directory path ~/.vim/files. It will work with or without the slash, but it's more common to omit it.
- We can add a command in the comment to ensure that the directories and files are created.
This commit is contained in:
xiaoqiang han 2023-02-26 09:18:34 +08:00 committed by GitHub
parent 604f1a6f39
commit b1e68f3d79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,11 +52,13 @@ endif
" Put all temporary files under the same directory.
" https://github.com/mhinz/vim-galore#temporary-files
" To ensure that the following configurations work correctly, please execute the following command.
" mkdir -p ~/.vim/files/{backup,swap,undo,info} && touch ~/.vim/files/info/viminfo
set backup
set backupdir =$HOME/.vim/files/backup/
set backupext =-vimbackup
set backupskip =
set directory =$HOME/.vim/files/swap//
set directory =$HOME/.vim/files/swap/
set updatecount =100
set undofile
set undodir =$HOME/.vim/files/undo/