summaryrefslogtreecommitdiffstats
path: root/init.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-07 14:13:36 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-07 14:13:36 +0200
commit09a03951ecfa74f6b5aa01eba082862a4d5d79c9 (patch)
tree10e60c79452cafcb1226084b48e35a35afc8c4a4 /init.lua
parentfe88e1c6b4e9e1a05c30016a8c674f242c463008 (diff)
downloadnvim-config-09a03951ecfa74f6b5aa01eba082862a4d5d79c9.tar.gz
nvim-config-09a03951ecfa74f6b5aa01eba082862a4d5d79c9.zip
misc(nvim): remove unused parameter
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index eeef2e9..3b81fa3 100644
--- a/init.lua
+++ b/init.lua
@@ -69,7 +69,7 @@ vim.api.nvim_create_autocmd({ "FileChangedShell" }, {
desc = "Prompt user to reload buffer when modified outside of nvim",
group = vim.g.dotfiles.augroup,
pattern = "*",
- callback = function(opts)
+ callback = function()
if vim.v.fcs_reason == "conflict" or vim.v.fcs_reason == "changed" then
vim.v.fcs_choice = "ask"
end