feat: add alacritty alabaster color theme patch
This commit is contained in:
parent
0975ba3044
commit
d0e097574e
3 changed files with 29 additions and 2 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
{ ... }: {
|
||||
|
||||
/*
|
||||
xdg.configFile."nvim" = {
|
||||
source = ./config;
|
||||
recursive = true;
|
||||
};
|
||||
*/
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue