# url.nvim A smol neovim plugin to open the url under the cursor, in your browser. ## Installation With Lazy: ```lua { "https://code.smolnet.org/micke/url.nvim" } ``` ## Usage ``` :UrlOpen ``` ## Keybindings Add a keybinding: ``` nnoremap u :UrlOpen ``` or with lua ```lua vim.api.nvim_set_keymap("n", "u", "UrlOpen", {}) ``` or using which-key.nvim ```lua require("which-key").add({ {"u", "UrlOpen", desc = "Open URL"} } ```