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.
27 lines
596 B
27 lines
596 B
return { |
|
"alirezanobakht13/just-runner.nvim", |
|
dependencies = { |
|
"folke/snacks.nvim", -- Recommended (default) |
|
-- OR use "nvim-telescope/telescope.nvim" |
|
}, |
|
config = function() |
|
require("just-runner").setup({ |
|
picker = "snacks", |
|
window_position = "bottom", |
|
close_on_success = false, |
|
close_on_error = false, |
|
pause_before_close = 2000, |
|
}) |
|
end, |
|
keys = { |
|
-- Use Lua function, not command string! |
|
{ |
|
"<leader>j", |
|
function() |
|
require("just-runner").run() |
|
end, |
|
desc = "Just Run", |
|
mode = "n", |
|
}, |
|
}, |
|
}
|
|
|