This commit is contained in:
2025-08-30 13:45:22 -06:00
parent 1dae2173af
commit 576a13ea8f
7 changed files with 32 additions and 13 deletions

View File

@@ -15,8 +15,8 @@
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"nc" = "~/nixos-servers/conf-editor.sh";
"ls" = "eza";
"z" = "zoxide";
};
};

View File

@@ -0,0 +1,2 @@
inherits="dracula"
ui.background= {}

View File

@@ -53,7 +53,7 @@
"diff.delta" = "orange"
"diff.minus" = "red"
"ui.background" = {}
"ui.background" = { bg = "bg0" }
"ui.cursor" = { fg = "bg0", bg = "fg" }
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }

View File

@@ -5,9 +5,10 @@
enable = true;
themes = {
everforest_dark_trans = ./everforest_dark_trans.toml;
dracula_trans = ./dracula_trans.toml;
};
settings = {
theme = "everforest_dark_trans";
theme = "dracula_trans";
};
};

View File

@@ -1,4 +1,4 @@
add_newline = true
add_newline = false
format = """
@@ -27,13 +27,11 @@ $docker_context\
[](fg:#B55690 bg:#A30262)\
$time\
[ ](fg:#A30262)\
\n
[█](fg:#D52D00)
\n\
$status\
$cmd_duration\
[ ](fg:#d52d00)
"""
# Disable the blank line at the start of the prompt
# add_newline = false
# You can also replace your username with a neat symbol like  to save some space
[username]
show_always = true
@@ -139,3 +137,20 @@ disabled = false
time_format = "%R" # Hour:Minute Format
style = "fg:#d3c6aa bg:#A30262"
format = '[[ ♥ $time ](bg:#A30262)]($style)'
[status]
disabled = false
symbol = "󰜺 "
success_symbol = " "
not_executable_symbol = " "
not_found_symbol = "󰦀 "
sigint_symbol = " "
signal_symbol = "󰣧 "
recognize_signal_code = false
style = "fg:#d3c6aa bg:#D52D00"
format = '[ $symbol ]($style)'
[cmd_duration]
min_time = 10_000
style = "fg:#d3c6aa bg:#d52d00"
format = '[$duration]($style)'

View File

@@ -3,6 +3,9 @@
{
programs.thunderbird = {
enable = true;
profiles.autumn = {
isDefault = true;
};
};
}