Skip to content

Neovim plugin that converts decimal numbers to their binary representation

License

Notifications You must be signed in to change notification settings

jlodenius/strider.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Strider.nvim

Strider.nvim is a Neovim plugin that converts decimal numbers under the cursor to their binary representation.

Configuration

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.

Installation

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

About

Neovim plugin that converts decimal numbers to their binary representation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages