nx.nvim
nx.nvim copied to clipboard
Neovim API utility wrapper for more convenience with Lua keymaps, highlights, autocommands and options.
I found a typo in the function checking for single mappings, you were checking type(nx_map[1] == "string") instead of type(nx_map[1]) == "string".
I would like to see an option that would check if a module is loaded or not to determine on wether to define the keymap. # Reason Less repetitiveness. I...
`wk_label` currently only supports global keymaps. Buffer and filetype keymaps are using `desc`
we could support external plugins by making possible to return values instead of directly invoking the nvim api. an example would be to return legendary tables.