summaryrefslogtreecommitdiff
path: root/lua/config/hex.lua
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-04-09 15:46:00 +0800
committerbh <qn+git@excalibur.computer>2026-04-09 15:46:00 +0800
commit6c81e38e15455fb3074d9d46c94ec2c951b5a382 (patch)
treec103a81c733ff200b4114f3a1caee058c10f374e /lua/config/hex.lua
parent0a67a5614c1716c8ccf46980e13826616aa70c28 (diff)
Fix indentation
Diffstat (limited to 'lua/config/hex.lua')
-rw-r--r--lua/config/hex.lua30
1 files changed, 15 insertions, 15 deletions
diff --git a/lua/config/hex.lua b/lua/config/hex.lua
index a743620..4608579 100644
--- a/lua/config/hex.lua
+++ b/lua/config/hex.lua
@@ -2,23 +2,23 @@ return function()
require 'HexEditor'.setup {
- -- cli command used to dump hex data
- dump_cmd = 'xxd -g 1 -u',
+ -- 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',
-
- -- function that runs on BufReadPre to determine if it's binary or not
- is_buf_binary_pre_read = function()
- -- logic that determines if a buffer contains binary data or not
- -- must return a bool
- end,
+ -- cli command used to assemble from hex data
+ assemble_cmd = 'xxd -r',
+
+ -- function that runs on BufReadPre to determine if it's binary or not
+ is_buf_binary_pre_read = function()
+ -- logic that determines if a buffer contains binary data or not
+ -- must return a bool
+ end,
- -- function that runs on BufReadPost to determine if it's binary or not
- is_buf_binary_post_read = function()
- -- logic that determines if a buffer contains binary data or not
- -- must return a bool
- end,
+ -- function that runs on BufReadPost to determine if it's binary or not
+ is_buf_binary_post_read = function()
+ -- logic that determines if a buffer contains binary data or not
+ -- must return a bool
+ end,
}
end