You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
560 B
23 lines
560 B
-- Terminal UX layered on Snacks (replaces toggleterm). |
|
-- Helpers live in lua/config/terminal.lua; keys are declared here so lazy.nvim |
|
-- registers the which-key labels with the rest of the snacks spec. |
|
return { |
|
"folke/snacks.nvim", |
|
keys = { |
|
{ |
|
"<leader>tt", |
|
function() |
|
require("config.terminal").open_float() |
|
end, |
|
desc = "Terminal (float)", |
|
mode = "n", |
|
}, |
|
{ |
|
"<leader>ft", |
|
function() |
|
require("config.terminal").picker() |
|
end, |
|
desc = "Terminals (list/restore)", |
|
}, |
|
}, |
|
}
|
|
|