/gitlink.nvim

Goto/Copy File's Online Link

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

gitlink.nvim

gitlink.nvim provide the feature that go to current file's online link in browser and copy the link in clipboard. Which is inspired by neovim-gitlink

Installation

require('plug').add({
    {
        'wsdjeg/gitlink.nvim',
        config = function()
            vim.keymap.set('n', '<leader>fy', function()
                require('gitlink').copy()
            end, { silent = true })
        end,
    },
})