added some plugions
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user