Hodur.nvim is a plugin for Neovim that allows you to quickly open a file or copy URL located under the cursor.
- Jump to the file under cursor.
- Supports formats:
file
,file:line
,file:line:column
. - Automatically positions the cursor at the correct location.
- Highlight target line
- Supports formats:
- Copy URL under cursor to the clipboard:
- Support for
http(s)://
andftp://
URLs - Highlight copied text
- Support for
- Configurable hotkey (default is Ctrl+G).
Using packer.nvim
use {
'vodchella/hodur.nvim',
config = function()
require('hodur').setup({
key = "<C-g>"
})
end
}