diff --git a/init.lua b/init.lua index 07bac25..b85699a 100644 --- a/init.lua +++ b/init.lua @@ -15,7 +15,6 @@ require("lazy").setup({ { import = "plugins" }, -- 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 'vigoux/ltex-ls.nvim', -- grammer checking -- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line @@ -60,21 +59,3 @@ require("config.lsp") -- render bufferline 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, - } -