19 lines
290 B
Lua
19 lines
290 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 = {
|
|
function()
|
|
bind.leader_key("SHIFT + Return", hl.dsp.exec_cmd("pypr toggle term"), "Pyprland: toggle drop terminal", {})
|
|
end,
|
|
}
|
|
|
|
return M
|