Live Reload and VIM

Permalink | 57 words | 2 minutes

When using live reload (uwe dev) and the VIM text editor swap files and backups can interfere with the operating system file change notifications.

We recommend disabling swap files and backups with VIM to prevent errors using the live reload functionality.

To disable swap files and backups we add these lines to our ~/.vimrc:

set noswapfile
set nobackup
set nowritebackup

By Muji on Fri Jul 3 2020