vodchella/hodur.nvim

github github
file-explorer
stars 13
issues 0
subscribers 1
forks 0
CREATED

2025-04-26

UPDATED

8 days ago


Hodur Awesome

License: MIT

Hodur.nvim is a plugin for Neovim that allows you to quickly open a file or copy URL located under the cursor.

demo

Contents

Features

  • 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
  • Copy URL under cursor to the clipboard:
    • Support for http(s):// and ftp:// URLs
    • Highlight copied text
  • Configurable hotkey (default is Ctrl+G).

Installation

Using packer.nvim

use {
    'vodchella/hodur.nvim',
    config = function()
        require('hodur').setup({
            key = "<C-g>"
        })
    end
}