An open API service indexing awesome lists of open source software.

https://github.com/wsdjeg/gitlink.nvim

Goto/Copy File's Online Link
https://github.com/wsdjeg/gitlink.nvim

Last synced: 25 days ago
JSON representation

Goto/Copy File's Online Link

Awesome Lists containing this project

README

        

# 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](https://marketplace.visualstudio.com/items?itemName=qezhu.gitlink)

## Installation

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