dotfiles/home/.config/nvim/lua/plugins/confirm-quit.lua

11 lines
242 B
Lua
Raw Normal View History

2023-11-25 14:37:36 +02:00
-- Confirm before quit
--- @type LazyPluginSpec
2023-11-22 16:18:01 +02:00
return {
enabled = vim.g.neovide == not nil,
2023-11-22 16:18:01 +02:00
"yutkat/confirm-quit.nvim",
event = "CmdlineEnter",
2024-01-24 13:51:39 +02:00
opts = {
quit_message = "You are in Neovide, are you sure you want to quit?",
},
2023-11-22 16:18:01 +02:00
}