added some plugions

This commit is contained in:
venus
2026-05-22 05:43:19 -05:00
parent 3882f7f805
commit 85d4c44b31
5 changed files with 43 additions and 52 deletions

View File

@@ -1,22 +1,11 @@
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
'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,
}