diff --git a/lua/weeheavy/plugins/snipe.lua b/lua/weeheavy/plugins/snipe.lua index f1a7515..15938e5 100644 --- a/lua/weeheavy/plugins/snipe.lua +++ b/lua/weeheavy/plugins/snipe.lua @@ -1,40 +1,40 @@ -- Buffer navigation -- https://github.com/leath-dub/snipe.nvim return { - "leath-dub/snipe.nvim", - opts = {}, - keys = { - { - "", - function() - require("snipe").open_buffer_menu() - end, - desc = "Open Snipe buffer menu", - }, - }, - config = function() - local snipe = require("snipe") - snipe.setup({ - hints = { - -- Charaters to use for hints - -- make sure they don't collide with the navigation keymaps - dictionary = "saflewcmpghio", - }, - ui = { - position = "topright", - -- position = "cursor", - open_win_override = { - -- title = "i can haz file?", - border = "rounded", - }, - preselect_current = true, - }, - navigate = { - cancel_snipe = "q", - close_buffer = "d", - open_vsplit = "V", - open_split = "X", - }, - }) - end, + "leath-dub/snipe.nvim", + opts = {}, + keys = { + { + "", + function() + require("snipe").open_buffer_menu() + end, + desc = "Open Snipe buffer menu", + }, + }, + config = function() + local snipe = require("snipe") + snipe.setup({ + hints = { + -- Charaters to use for hints + -- make sure they don't collide with the navigation keymaps + dictionary = "saflewcmpghio", + }, + ui = { + position = "topright", + -- position = "cursor", + open_win_override = { + -- title = "i can haz file?", + border = "rounded", + }, + preselect_current = true, + }, + navigate = { + cancel_snipe = "q", + close_buffer = "D", + open_vsplit = "V", + open_split = "X", + }, + }) + end, }