https://github.com/stsewd/fzf-lua-checkout.nvim
Manage branches and tags with fzf-lua
https://github.com/stsewd/fzf-lua-checkout.nvim
fzf fzf-lua neovim neovim-plugin
Last synced: about 2 months ago
JSON representation
Manage branches and tags with fzf-lua
- Host: GitHub
- URL: https://github.com/stsewd/fzf-lua-checkout.nvim
- Owner: stsewd
- License: mit
- Created: 2024-10-28T03:35:50.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-26T01:50:31.000Z (4 months ago)
- Last Synced: 2024-12-26T02:37:52.250Z (4 months ago)
- Topics: fzf, fzf-lua, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# fzf-lua-checkout.nvim
Manage branches and tags with [fzf-lua](https://github.com/ibhagwan/fzf-lua/)
> This is a port of [fzf-checkout.vim](https://github.com/stsewd/fzf-checkout.vim) for fzf-lua.
> [!WARNING]
> This plugin is still under development, use it at your own risk.## Installation
Install using your favorite package manager, for example with [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
-- You must install fzf-lua somewhere in your config.
{ "ibhagwan/fzf-lua" },
{
"stsewd/fzf-lua-checkout.nvim",
keys = {
{
"fb",
function()
require("fzf-lua-checkout.list").branches()
end,
desc = "List git branches",
},
{
"ft",
function()
require("fzf-lua-checkout.list").tags()
end,
desc = "List git tags",
},
},
},
}
```