removed hexdump

This commit is contained in:
venus
2026-04-01 01:59:18 -05:00
parent 84294ac88d
commit 66b8d10aea

View File

@@ -15,7 +15,6 @@ require("lazy").setup({
{ import = "plugins" }, { import = "plugins" },
-- import the following list of plugins -- this is where i put plugins with minial settings -- import the following list of plugins -- this is where i put plugins with minial settings
{ {
'RaafatTurki/hex.nvim',
'tpope/vim-commentary', -- commenting lines with shortcut 'tpope/vim-commentary', -- commenting lines with shortcut
'vigoux/ltex-ls.nvim', -- grammer checking 'vigoux/ltex-ls.nvim', -- grammer checking
-- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line -- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line
@@ -60,21 +59,3 @@ require("config.lsp")
-- render bufferline -- render bufferline
require("bufferline").setup{} require("bufferline").setup{}
-- defaults
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',
-- function that runs on BufReadPre to determine if it's binary or not
is_file_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_file_binary_post_read = function()
-- logic that determines if a buffer contains binary data or not
-- must return a bool
end,
}