feat: add alacritty alabaster color theme patch

This commit is contained in:
Jacob Bachmann 2024-04-24 20:33:38 +02:00
parent 0975ba3044
commit d0e097574e
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
3 changed files with 29 additions and 2 deletions

View file

@ -1,6 +1,31 @@
{ pkgs, lib, ... }:
let
common = (import ../common.nix) { pkgs = pkgs; lib = lib; };
alabaster-theme-patch = builtins.toFile "alabaster.patch" ''
diff --git a/alabaster.toml b/alabaster.toml
index df312d3..f5e5499 100644
--- a/alabaster.toml
+++ b/alabaster.toml
@@ -2,11 +2,11 @@
# author tonsky
[colors.primary]
-background = '#F7F7F7'
+background = '#FFFFFF'
foreground = '#434343'
[colors.cursor]
-text = '#F7F7F7'
+text = '#FFFFFF'
cursor = '#434343'
[colors.normal]
'';
alacritty-theme-patched = pkgs.alacritty-theme.overrideAttrs (final: previous: {
patches = [
alabaster-theme-patch
];
});
in
{
programs.alacritty = {
@ -9,8 +34,7 @@ in
import = [
# Available themes:
# https://github.com/alacritty/alacritty-theme
"${pkgs.alacritty-theme}/alabaster.toml"
"${alacritty-theme-patched}/alabaster.toml"
];
env.TERM = "xterm-256color";
font = {

View file

@ -1,9 +1,11 @@
{ ... }: {
/*
xdg.configFile."nvim" = {
source = ./config;
recursive = true;
};
*/
programs.neovim = {
enable = true;