migrate to starship instead of oh-my-zsh

This commit is contained in:
Seaswimmer 2024-11-18 16:50:13 -05:00
parent 4f24c9a5fb
commit d92f5315ea
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -1,16 +1,62 @@
{ pkgs, ... }: { { pkgs, ... }: {
# starship - an customizable prompt for any shell # starship - a customizable prompt for any shell
#programs.starship = { programs.starship = {
#enable = true; enable = true;
# custom settings # custom settings
#settings = { settings = {
#format = "$all$nix_shell$python$nodejs$lua$golang$rust$php$git_branch$git_commit$git_state$git_status\n$username$hostname$directory"; format =
#add_newline = true; "[](bg:#1e1e2e fg:#a6e3a1)$username$hostname[](fg:#a6e3a1 bg:#89b4fa)$directory[](fg:#89b4fa bg:#cba6f7)$direnv[](fg:#cba6f7 bg:#f9e2af)$git_branch$git_status[](fg:#f9e2af bg:#1e1e2e)$character";
#aws.disabled = true; username = {
#gcloud.disabled = true; show_always = true;
#line_break.disabled = true; format = "[ $user@]($style)";
#}; style_user = "fg:#313244 bg:#a6e3a1";
#}; style_root = "fg:#313244 bg:#a6e3a1";
};
hostname = {
ssh_only = false;
format = "[$hostname $ssh_symbol]($style)";
style = "fg:#313244 bg:#a6e3a1";
};
directory = {
format = "[ $path ]($style)";
style = "fg:#313244 bg:#89b4fa";
};
git_branch = {
format = "[ $symbol$branch(:$remote_branch) ]($style)";
symbol = " ";
style = "fg:#313244 bg:#f9e2af";
};
direnv = {
symbol = "󱄅 ";
format = "[ $symbol$loaded/$allowed ]($style)";
disabled = false;
style = "fg:#313244 bg:#cba6f7";
};
git_status = {
format = "[$all_status]($style)";
style = "fg:#313244 bg:#f9e2af";
};
git_metrics = {
format = "([+$added]($added_style))[]($added_style)";
added_style = "fg:#313244 bg:#f9e2af";
deleted_style = "fg:bright-red bg:235";
disabled = false;
};
hg_branch = {
format = "[ $symbol$branch ]($style)";
symbol = " ";
};
cmd_duration = {
format = "[ $duration ]($style)";
style = "fg:bright-white bg:18";
};
character = {
success_symbol = "[ ](#a6e3a1) ";
error_symbol = "[ ](#f38ba8) ";
};
};
};
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.zsh = { programs.zsh = {
enable = true; enable = true;
@ -25,12 +71,6 @@
histSize = 10000; histSize = 10000;
histFile = "$HOME/.zsh_history"; histFile = "$HOME/.zsh_history";
ohMyZsh = {
enable = true;
theme = "agnoster";
plugins = [ "git" "direnv"];
};
shellAliases = let ezaArgs = "--time-style='+%Y-%m-%d %H:%M' --icons"; shellAliases = let ezaArgs = "--time-style='+%Y-%m-%d %H:%M' --icons";
in { in {
ff = "fastfetch"; ff = "fastfetch";