You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
475 B

4 days ago
# url.nvim
4 days ago
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 <leader>u :UrlOpen<CR>
```
or with lua
```lua
vim.api.nvim_set_keymap("n", "<leader>u", "<cmd>UrlOpen<CR>", {})
```
or using which-key.nvim
```lua
require("which-key").add({
{"<leader>u", "<CMD>UrlOpen<CR>", desc = "Open URL"}
}
```