Compare commits
2 commits
8d678f1222
...
89d9d69fb5
Author | SHA1 | Date | |
---|---|---|---|
89d9d69fb5 | |||
800b462e56 |
2 changed files with 17 additions and 4 deletions
|
@ -17,6 +17,7 @@
|
||||||
};
|
};
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
starship.enable = true;
|
starship.enable = true;
|
||||||
|
tmux.enable = true;
|
||||||
utils.enable = true;
|
utils.enable = true;
|
||||||
vifm.enable = true;
|
vifm.enable = true;
|
||||||
zellij.enable = true;
|
zellij.enable = true;
|
||||||
|
|
|
@ -12,7 +12,7 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
format = "$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$line_break$python$nix_shell$character";
|
format = "$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$fill$kubernetes$line_break$python$nix_shell$character";
|
||||||
directory = {
|
directory = {
|
||||||
style = "blue";
|
style = "blue";
|
||||||
truncate_to_repo = false;
|
truncate_to_repo = false;
|
||||||
|
@ -22,9 +22,9 @@ in
|
||||||
format = "[$read_only]($read_only_style)[$path]($style) ";
|
format = "[$read_only]($read_only_style)[$path]($style) ";
|
||||||
};
|
};
|
||||||
character = {
|
character = {
|
||||||
success_symbol = "[](purple)";
|
success_symbol = "[](purple)";
|
||||||
error_symbol = "[](red)";
|
error_symbol = "[](red)";
|
||||||
vimcmd_symbol = "[](green)";
|
vimcmd_symbol = "[](green)";
|
||||||
};
|
};
|
||||||
git_branch = {
|
git_branch = {
|
||||||
format = "[$branch]($style)";
|
format = "[$branch]($style)";
|
||||||
|
@ -58,6 +58,18 @@ in
|
||||||
symbol = " ";
|
symbol = " ";
|
||||||
style = "bright-black";
|
style = "bright-black";
|
||||||
};
|
};
|
||||||
|
kubernetes = {
|
||||||
|
format = "[|$symbol$cluster| ]($style)";
|
||||||
|
style = "yellow";
|
||||||
|
disabled = false;
|
||||||
|
detect_folders = [
|
||||||
|
"clusters"
|
||||||
|
"deploy"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
fill = {
|
||||||
|
symbol = " ";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue