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

@@ -78,3 +78,5 @@ vim.keymap.set('n', "<leader>zd", "<cmd>setlocal nospell<cr>", { desc = "Disable
vim.keymap.set('n', '<leader>bp', '<cmd>BBPull<CR>', { desc = '[B]itburner [P]ull' })
vim.keymap.set('n', '<leader>bu', '<cmd>BBPush<CR>', { desc = '[B]itburner [U]pload/Push' })
vim.keymap.set('n', '<leader>br', '<cmd>BBRam<CR>', { desc = '[B]itburner [R]am check' })
--Hex Editing
vim.keymap.set('n', '<leader>hh', '<cmd>Hex<CR>', { desc = 'open [H]ex view of a file' })

View File

@@ -1,17 +1,17 @@
return {
"John-Bush14/neoburner",
config = function()
require("neoburner").setup({
-- needed
filesystem = "/home/venus/code/bitburner/", -- where bitburner filesystem will be placed
-- optional
-- "John-Bush14/neoburner",
-- config = function()
-- require("neoburner").setup({
-- -- needed
-- filesystem = "/home/venus/code/bitburner/", -- where bitburner filesystem will be placed
-- -- optional
address = "ws://localhost", -- localhost
-- address = "ws://localhost", -- localhost
port = 12525,
servers = {"home"}, -- servers wich will be in filesystem, cannot be set to "*" because of api limitations.
root_server = "home", -- or nil
servers_folder = "servers", -- or nil
})
end
-- port = 12525,
-- servers = {"home"}, -- servers wich will be in filesystem, cannot be set to "*" because of api limitations.
-- root_server = "home", -- or nil
-- servers_folder = "servers", -- or nil
-- })
-- end
}

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,
}