Strider.nvim is a Neovim plugin that converts decimal numbers under the cursor to their binary representation.
This plugin offers a single feature, which I've bound to K. This binding defaults to vim.lsp.buf.hover()
unless the cursor is on a number, eliminating the need for an additional keybind.
Install with lazy.nvim
require("lazy").setup({
{
"https://github.com/jlodenius/strider.nvim",
config = function()
vim.keymap.set("n", "K", '<cmd>lua require("strider").dec_to_bin()<CR>')
end,
}
})
... or any other package manager