diff options
| author | Rosa <rosaontheweb@proton.me> | 2025-12-20 15:31:54 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2025-12-20 15:31:54 -0500 |
| commit | d76111cd0de07c821844be4583ffb81eb2d59bf7 (patch) | |
| tree | 91a1fc2e7e3acb8336a85aed9abc242307a4fc35 /user/wm/foot.nix | |
| parent | ca9e1f1fb8126b34ca95fca78965c1d782a30102 (diff) | |
foot, editor
Diffstat (limited to 'user/wm/foot.nix')
| -rw-r--r-- | user/wm/foot.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/user/wm/foot.nix b/user/wm/foot.nix new file mode 100644 index 0000000..02e1ae6 --- /dev/null +++ b/user/wm/foot.nix @@ -0,0 +1,36 @@ +{ config, ... }: +{ + programs.foot = { + enable = true; + settings = { + bell.urgent = "yes"; + colors = { + background = "2e3440"; + bright0 = "4c566a"; + bright1 = "bf616a"; + bright2 = "a3be8c"; + bright3 = "ebcb8b"; + bright4 = "81a1c1"; + bright5 = "b48ead"; + bright6 = "8fbcbb"; + bright7 = "eceff4"; + foreground = "eceff4"; + regular0 = "3b4252"; + regular1 = "bf616a"; + regular2 = "a3be8c"; + regular3 = "ebcb8b"; + regular4 = "5e81ac"; + regular5 = "b48ead"; + regular6 = "88c0d0"; + regular7 = "e5e9f0"; + }; + + main = { + dpi-aware = "yes"; + font = "Fira Code:size=11"; + }; + + mouse.hide-when-typing = "yes"; + }; + }; +} |
