nvim treesitter and config updates

This commit is contained in:
2026-08-14 00:58:28 +02:00
parent 5fffa9f179
commit e1d4eb5ed5
2 changed files with 25 additions and 1 deletions
+24
View File
@@ -33,6 +33,9 @@ hl.on("hyprland.start", function ()
hl.exec_cmd("waybar")
hl.exec_cmd("wl-paste --type text --watch cliphist store")
hl.exec_cmd("wl-paste --type image --watch cliphist store")
hl.exec_cmd("uwsm app -- steam -silent")
hl.exec_cmd("uwsm app -- solaar -w hide")
hl.exec_cmd("uwsm app -- zen-browser")
end)
-- -------------------------------
@@ -269,3 +272,24 @@ hl.window_rule({
},
no_focus = true,
})
-- Force Zen Browser and Solaar to Workspace 1
hl.window_rule({
name = "zen-workspace",
match = { class = "^([Zz]en)$" },
workspace = "1",
})
hl.window_rule({
name = "solaar-workspace",
match = { class = "^([Ss]olaar)$" },
workspace = "1",
})
-- Force Steam to Workspace 2
hl.window_rule({
name = "steam-workspace",
match = { class = "^([Ss]team)$" },
workspace = "2",
})