diff --git a/hosts/work/home-config.nix b/hosts/work/home-config.nix index 2ed7d11..45b0195 100644 --- a/hosts/work/home-config.nix +++ b/hosts/work/home-config.nix @@ -17,7 +17,6 @@ }; neovim.enable = true; starship.enable = true; - tmux.enable = true; utils.enable = true; vifm.enable = true; zellij.enable = true; diff --git a/modules/home-manager/cli/starship/default.nix b/modules/home-manager/cli/starship/default.nix index e04bc4c..2ae30bc 100644 --- a/modules/home-manager/cli/starship/default.nix +++ b/modules/home-manager/cli/starship/default.nix @@ -12,7 +12,7 @@ in enable = true; enableZshIntegration = true; settings = { - format = "$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$fill$kubernetes$line_break$python$nix_shell$character"; + format = "$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$line_break$python$nix_shell$character"; directory = { style = "blue"; truncate_to_repo = false; @@ -22,9 +22,9 @@ in format = "[$read_only]($read_only_style)[$path]($style) "; }; character = { - success_symbol = "[](purple)"; - error_symbol = "[](red)"; - vimcmd_symbol = "[](green)"; + success_symbol = "[󰅂](purple)"; + error_symbol = "[󰅂](red)"; + vimcmd_symbol = "[󰅁](green)"; }; git_branch = { format = "[$branch]($style)"; @@ -58,18 +58,6 @@ in symbol = " "; style = "bright-black"; }; - kubernetes = { - format = "[|$symbol$cluster| ]($style)"; - style = "yellow"; - disabled = false; - detect_folders = [ - "clusters" - "deploy" - ]; - }; - fill = { - symbol = " "; - }; }; }; };