Files
Hyprdots/lua/modules/pypr.lua
T
2026-05-28 03:55:30 -04:00

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