21 lines
308 B
Lua
21 lines
308 B
Lua
local bind = require("lua.lib.bind")
|
|
local M = {}
|
|
|
|
local function start_pypr()
|
|
hl.exec_cmd("pypr")
|
|
end
|
|
|
|
M.autostart = {
|
|
start_pypr,
|
|
}
|
|
|
|
M.binds = {
|
|
{
|
|
keys = bind.with_leader("SHIFT + Return"),
|
|
dispatcher = hl.dsp.exec_cmd("pypr toggle term"),
|
|
desc = "Pyprland: toggle drop terminal",
|
|
},
|
|
}
|
|
|
|
return M
|