02-15-25 update

This commit is contained in:
2025-02-15 20:31:57 -05:00
parent 95c4f2bb0c
commit 7326ab40f0
13 changed files with 77 additions and 48 deletions

View File

@@ -15,7 +15,7 @@
"($ssh_symbol)($username)($hostname)($nix_shell)(bold white)($cmd_duration)($character)"
"($git_branch)($git_status)($rust)"
"($directory)"
"$line_break[ > ](bold #89b4fa)"
"$line_break[ ](bold #89b4fa)"
];
username = {
@@ -42,7 +42,7 @@
};
cmd_duration = {
format = "[ 󰔛 $duration]($style)";
format = "[󰔛 $duration]($style)";
disabled = false;
style = "bg:none fg:#f9e2af";
show_notifications = false;

View File

@@ -16,6 +16,8 @@
FLAKEPATH = "$HOME/.sysflake";
STEAMPATH = "$HOME/.local/share/Steam";
PATH = "$PATH:$HOME/.userpath/";
FZF_DEFAULT_COMMAND = "fd";
FZF_DEFAULT_OPTS = "--height 40% --layout=reverse --border";
};
};
};

View File

@@ -3,6 +3,7 @@
let
shellsound = "${pkgs.myScripts.playshellsound}/bin/playshellsound";
color-commit = "${pkgs.myScripts.color-commit}/bin/color-commit";
fzf-tab = "${pkgs.myPkgs.fzf-tab}";
sndpath = "${self}/assets/sound";
in
{
@@ -174,6 +175,9 @@ in
autoload -U up-line-or-beginning-search; zle -N up-line-or-beginning-search
autoload -U down-line-or-beginning-search; zle -N down-line-or-beginning-search
compinit
source ${fzf-tab}/fzf-tab.plugin.zsh
bindkey -v
kitty_theme
type starship_zle-keymap-select >/dev/null || \

View File

@@ -18,7 +18,13 @@
oh-my-zsh = {
enable = true;
plugins = [ "git" "fzf" ];
plugins = [
"git"
"fzf"
"aliases"
"command-not-found"
"eza"
];
};
enableCompletion = true;