nvim: add autocmd

This commit is contained in:
PowerUser64 2022-08-11 12:25:05 -07:00
parent 4e79a02f38
commit 6ce0e290ee

View file

@ -62,6 +62,9 @@ command! WQA wqa
command! Set set
]]
-- Quit even if there are more files to edit (files passed from the command line)
vim.cmd 'au QuitPre * args %'
-- Go to previous file, but faster
vim.cmd 'command! P previous'