diff --git a/lua/astrocommunity/project/linear-nvim/init.lua b/lua/astrocommunity/project/linear-nvim/init.lua index b541a4334..12f16fe3e 100644 --- a/lua/astrocommunity/project/linear-nvim/init.lua +++ b/lua/astrocommunity/project/linear-nvim/init.lua @@ -8,24 +8,24 @@ return { "AstroNvim/astrocore", opts = function(_, opts) local maps = opts.mappings - local prefix = "m" + local prefix = "L" maps.n[prefix] = { desc = "Linear" } - maps.n[prefix .. "m"] = { + maps.n[prefix .. "l"] = { function() require("linear-nvim").show_assigned_issues() end, desc = "Show assigned issues", } maps.v[prefix .. "c"] = { function() require("linear-nvim").create_issue() end, - desc = "Toggle local note", + desc = "Create issue", } maps.n[prefix .. "c"] = { function() require("linear-nvim").create_issue() end, - desc = "Toggle local note", + desc = "Create issue", } maps.n[prefix .. "s"] = { function() require("linear-nvim").show_issue_details() end, - desc = "Toggle local note", + desc = "Show issue details", } end, },