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
- Host: GitHub
- URL: https://github.com/wsdjeg/gitlink.nvim
- Owner: wsdjeg
- License: gpl-3.0
- Created: 2025-04-13T12:24:53.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2025-04-13T13:21:39.000Z (about 1 month ago)
- Last Synced: 2025-04-13T13:32:16.736Z (about 1 month ago)
- Language: Lua
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
},
})
```