Files
Nvim/lua/plugins/re.lua
2026-05-22 05:43:19 -05:00

12 lines
272 B
Lua

return {
'RaafatTurki/hex.nvim',
config = function()
require 'hex'.setup {
-- cli command used to dump hex data
dump_cmd = 'xxd -g 1 -u',
-- cli command used to assemble from hex data
assemble_cmd = 'xxd -r',
}
end,
}