neoburner support sorta, and hex editors for re

This commit is contained in:
venus
2026-04-25 11:53:20 -05:00
parent 3a85cfd58f
commit 3882f7f805
5 changed files with 64 additions and 16 deletions

22
lua/plugins/re.lua Normal file
View File

@@ -0,0 +1,22 @@
return {
"dmxk062/hexed.nvim",
-- default options
opts = {
highlights = {
String = "String", -- ascii characters
Null = "NonText", -- null bytes
Newline = "SpecialChar", -- newline characters(\n and \r)
Address = "Label", -- the addresses at the beginning of lines
Byte = "Identifier", -- any other byte
Region = "Visual", -- context are in preview buffer
Char = "Substitute", -- character the cursor is on
},
command = "Hexed", -- the command used to invoke hexed
},
{
"DamianVCechov/hexview.nvim",
config = function()
require("hexview").setup()
end
}
}