From 804efb0c9943145c95c9f8562e82856acfbd7cd5 Mon Sep 17 00:00:00 2001 From: zackartz Date: Wed, 20 Mar 2024 16:24:47 -0400 Subject: [PATCH] 251 current 2024-03-20 13:46:10 24.05.20240319.b06025f 6.8.0-zen1 * --- modules/home-manager/vim/lazy-lock.json | 1 + modules/rice/foot.nix | 33 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 modules/rice/foot.nix diff --git a/modules/home-manager/vim/lazy-lock.json b/modules/home-manager/vim/lazy-lock.json index 5cc0173..ab72510 100644 --- a/modules/home-manager/vim/lazy-lock.json +++ b/modules/home-manager/vim/lazy-lock.json @@ -13,6 +13,7 @@ "crates.nvim": { "branch": "main", "commit": "b4f4987ccdb1cc3899ee541ef4375c73c48c4570" }, "document-color.nvim": { "branch": "main", "commit": "74c487f0e5accfaae033755451b9e367220693fd" }, "dressing.nvim": { "branch": "master", "commit": "18e5beb3845f085b6a33c24112b37988f3f93c06" }, + "dropbar.nvim": { "branch": "master", "commit": "f1034cfe852cf62a0ebb12ae583f1477ea07e060" }, "flash.nvim": { "branch": "main", "commit": "48817af25f51c0590653bbc290866e4890fe1cbe" }, "friendly-snippets": { "branch": "main", "commit": "dcd4a586439a1c81357d5b9d26319ae218cc9479" }, "gitsigns.nvim": { "branch": "main", "commit": "078041e9d060a386b0c9d3a8c7a7b019a35d3fb0" }, diff --git a/modules/rice/foot.nix b/modules/rice/foot.nix new file mode 100644 index 0000000..4ad4394 --- /dev/null +++ b/modules/rice/foot.nix @@ -0,0 +1,33 @@ +{ + programs.foot = { + enable = true; + settings = '' + + [cursor] + color=191724 e0def4 + + [colors] + background=191724 + foreground=e0def4 + regular0=26233a # black (Overlay) + regular1=eb6f92 # red (Love) + regular2=31748f # green (Pine) + regular3=f6c177 # yellow (Gold) + regular4=9ccfd8 # blue (Foam) + regular5=c4a7e7 # magenta (Iris) + regular6=ebbcba # cyan (Rose) + regular7=e0def4 # white (Text) + + bright0=6e6a86 # bright black (Overlay) + bright1=eb6f92 # bright red (Love) + bright2=31748f # bright green (Pine) + bright3=f6c177 # bright yellow (Gold) + bright4=9ccfd8 # bright blue (Foam) + bright5=c4a7e7 # bright magenta (Iris) + bright6=ebbcba # bright cyan (Rose) + bright7=e0def4 # bright white (Text) + + font=Iosevka Nerd Font Mono + ''; + }; +}