Skip to content

stsewd/fzf-lua-checkout.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fzf-lua-checkout.nvim

Manage branches and tags with fzf-lua

This is a port of 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:

{
  -- You must install fzf-lua somewhere in your config.
  { "ibhagwan/fzf-lua" },
  {
    "stsewd/fzf-lua-checkout.nvim",
    keys = {
      {
        "<leader>fb",
        function()
          require("fzf-lua-checkout.list").branches()
        end,
        desc = "List git branches",
      },
      {
        "<leader>ft",
        function()
          require("fzf-lua-checkout.list").tags()
        end,
        desc = "List git tags",
      },
    },
  },
}

About

Manage branches and tags with fzf-lua

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages