Compare commits
2 Commits
0d09d7334b
...
25c5ac4bba
| Author | SHA1 | Date | |
|---|---|---|---|
| 25c5ac4bba | |||
| a060053a3f |
@@ -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
10
lua/plugins/flash.lua
Normal 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
47
lua/plugins/linear.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user