Compare commits

...

2 Commits

Author SHA1 Message Date
25c5ac4bba Add linear-nvim
Kinda bare-bones plugin right now, but why not
2025-05-14 17:32:31 -04:00
a060053a3f Disable flash for line-level char find
It's not working for me and I cannot figure out why
2025-05-14 17:32:11 -04:00
3 changed files with 58 additions and 0 deletions

View File

@@ -40,6 +40,7 @@
"kulala.nvim": { "branch": "main", "commit": "4a56a4cf40e126721a60039079f76a14caf5336a" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
"linear-nvim": { "branch": "master", "commit": "4eb033a361cd20bed392b336b5246dfe8274cb7e" },
"lsp_lines.nvim": { "branch": "main", "commit": "a92c755f182b89ea91bd8a6a2227208026f27b4d" },
"lualine.nvim": { "branch": "master", "commit": "15884cee63a8c205334ab13ab1c891cd4d27101a" },
"lush.nvim": { "branch": "main", "commit": "45a79ec4acb5af783a6a29673a999ce37f00497e" },

10
lua/plugins/flash.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
"folke/flash.nvim",
opts = {
modes = {
char = {
enabled = false, -- idk why but this does not work for me, ';' and ',' do not repeat
},
},
},
}

47
lua/plugins/linear.lua Normal file
View File

@@ -0,0 +1,47 @@
return {
{
"rmanocha/linear-nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"stevearc/dressing.nvim",
},
config = function()
require("linear-nvim").setup()
end,
keys = {
{
"<leader>mm",
function()
require("linear-nvim").show_assigned_issues()
end,
mode = "n",
desc = "Linear: show assigned issues",
},
{
"<leader>mc",
function()
require("linear-nvim").create_issue()
end,
mode = "v",
desc = "Linear: create issue from selected text",
},
{
"<leader>mc",
function()
require("linear-nvim").create_issue()
end,
mode = "n",
desc = "Linear: create issue",
},
{
"<leader>ms",
function()
require("linear-nvim").show_issue_details()
end,
mode = "n",
desc = "Linear: show issue details",
},
},
},
}