|
2 | 2 |
|
3 | 3 | {
|
4 | 4 | programs = {
|
| 5 | + atuin = { |
| 6 | + enable = true; |
| 7 | + daemon.enable = true; |
| 8 | + }; |
| 9 | + |
5 | 10 | dircolors = {
|
6 | 11 | enable = false;
|
7 | 12 | enableFishIntegration = config.programs.fish.enable;
|
|
49 | 54 | right_format = "$directory$git_branch$git_commit$git_state$git_status";
|
50 | 55 |
|
51 | 56 | character = {
|
52 |
| - success_symbol = "[♥](bold green)"; |
53 |
| - error_symbol = "[♥](bold red)"; |
54 |
| - vimcmd_symbol = "[♡](bold purple)"; |
55 |
| - vimcmd_replace_symbol = "[♡](bold green)"; |
56 |
| - vimcmd_replace_one_symbol = "[♡](bold green)"; |
57 |
| - vimcmd_visual_symbol = "[♡](bold yellow)"; |
| 57 | + success_symbol = "[ ♥ ](fg:black bg:green)"; |
| 58 | + error_symbol = "[ ♥ ](fg:black bg:red)"; |
| 59 | + vimcmd_symbol = "[ ♡ ](fg:black bg:purple)"; |
| 60 | + vimcmd_replace_symbol = "[ ♡ ](fg:black bg:green)"; |
| 61 | + vimcmd_replace_one_symbol = "[ ♡ ](fg:black bg:green)"; |
| 62 | + vimcmd_visual_symbol = "[ ♡ ](fg:black bg:yellow)"; |
58 | 63 | };
|
59 | 64 |
|
60 | 65 | username = {
|
61 |
| - format = "[$user]($style) "; |
| 66 | + style_user = "bg:purple fg:black"; |
| 67 | + style_root = "bg:red fg:black"; |
| 68 | + format = "[ $user ]($style)"; |
62 | 69 | disabled = false;
|
63 | 70 | show_always = true;
|
64 | 71 | };
|
|
74 | 81 | git_state.format = " [\\($state( $progress_current/$progress_total)\\)]($style)";
|
75 | 82 |
|
76 | 83 | git_status = {
|
| 84 | + style = "fg:black bg:red"; |
77 | 85 | ahead = "↑";
|
78 | 86 | behind = "↓";
|
79 | 87 | conflicted = "±";
|
|
82 | 90 | modified = "‼";
|
83 | 91 | renamed = "≡";
|
84 | 92 | stashed = "⌂";
|
85 |
| - format = ''( [\[$all_status$ahead_behind\]]($style))''; |
| 93 | + format = ''[ $all_status$ahead_behind ]($style)''; |
86 | 94 | };
|
87 | 95 |
|
88 | 96 | git_branch = {
|
89 |
| - format = " → [$symbol$branch(:$remote_branch)]($style)"; |
| 97 | + style = "fg:black bg:yellow"; |
| 98 | + format = "[ $symbol$branch(:$remote_branch) ]($style)"; |
90 | 99 | symbol = "";
|
91 | 100 | };
|
92 | 101 |
|
93 | 102 | battery.disabled = true;
|
94 | 103 | line_break.disabled = true;
|
95 | 104 |
|
96 | 105 | directory = {
|
97 |
| - read_only = "(ro)"; |
98 |
| - format = "[$read_only]($read_only_style) [$path]($style)"; |
| 106 | + style = "bg:cyan fg:black"; |
| 107 | + read_only_style = "bg:red fg:black"; |
| 108 | + read_only = " RO "; |
| 109 | + format = "[$read_only]($read_only_style)[ $path ]($style)"; |
99 | 110 | };
|
100 | 111 |
|
101 | 112 | nix_shell.format = "[(\\($name\\))]($style) ";
|
|
0 commit comments