diff options
| author | Blaster4385 <[email protected]> | 2026-05-15 23:28:20 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2026-05-18 16:52:47 +0530 |
| commit | f826256c010c0e5c8c2bd64adb1fae1c3f399717 (patch) | |
| tree | 194e7c15f0903b073d2db3dcae6aa09651341a85 /hypr/configs/plugins.lua | |
| parent | 8b254a730b26a40ef2d2ccf0881075a6719b6712 (diff) | |
Diffstat (limited to 'hypr/configs/plugins.lua')
| -rw-r--r-- | hypr/configs/plugins.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/hypr/configs/plugins.lua b/hypr/configs/plugins.lua new file mode 100644 index 0000000..8249609 --- /dev/null +++ b/hypr/configs/plugins.lua @@ -0,0 +1,38 @@ +local bg = "rgba(282828d9)" +local fg = "rgb(ebdbb2)" +local fg1 = "rgb(a89984)" +hl.config({ + plugin = { + hy3 = { + node_collapse_policy = 0, + tab_first_window = false, + group_inset = 5, + + tabs = { + from_top = false, + height = 25, + radius = 10, + text_font = "JetBrainsMono Nerd Font", + text_height = 12, + colors = { + active_border = fg, + active_text = fg, + active = bg, + focused_border = fg, + focused_text = fg, + focused = bg, + urgent_border = fg, + urgent_text = fg, + urgent = bg, + inactive_border = fg1, + inactive_text = fg, + inactive = bg + } + }, + + autotile = { + enable = true + } + } + } +}) |