nvim: enable confirmation

This commit is contained in:
He4eT 2025-08-24 02:17:13 +02:00
commit 22e6d1239b

View file

@ -48,6 +48,9 @@ vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
-- Disable Intro (:intro) -- Disable Intro (:intro)
vim.opt.shortmess:append('I') vim.opt.shortmess:append('I')
-- Raise a dialog asking if you wish to save the current file(s)
vim.o.confirm = true
-- Set window title -- Set window title
vim.o.title = true vim.o.title = true
vim.o.titlestring = '%F' vim.o.titlestring = '%F'