Disable oh-my-zsh

I don't think I really need it any more as a result of what I get from nix + oh-my-posh
This commit is contained in:
Gene Liverman 2025-01-10 15:16:20 -05:00
parent e852cc501c
commit aa619622a9
2 changed files with 19 additions and 19 deletions

View file

@ -289,25 +289,25 @@ in {
function svndiffless-nows() { function svndiffless-nows() {
svn diff -x -w "$@" |diff-so-fancy |less -R svn diff -x -w "$@" |diff-so-fancy |less -R
} }
# unset oh-my-zsh's gk so that gk can refer to the gitkraken-cli
unalias gk
''; '';
oh-my-zsh = { # # unset oh-my-zsh's gk so that gk can refer to the gitkraken-cli
enable = true; # unalias gk
plugins = [ # '';
"bundler" # oh-my-zsh = {
"gem" # enable = true;
"git" # plugins = [
"github" # "bundler"
"history" # "gem"
"kubectl" # "git"
"pip" # "github"
"terraform" # "history"
"vagrant" # "kubectl"
"vscode" # "pip"
]; # "terraform"
}; # "vagrant"
# "vscode"
# ];
# };
shellAliases = { shellAliases = {
bcrr = "bolt command run --run-as root --sudo-password-prompt"; bcrr = "bolt command run --run-as root --sudo-password-prompt";
bcrrs = "bcrr --stream --no-verbose"; bcrrs = "bcrr --stream --no-verbose";

View file

@ -14,7 +14,7 @@
export PATH=$PATH:/opt/puppetlabs/pdk/bin export PATH=$PATH:/opt/puppetlabs/pdk/bin
export PATH=$PATH:/opt/puppetlabs/puppet/bin export PATH=$PATH:/opt/puppetlabs/puppet/bin
''; '';
oh-my-zsh.plugins = [ "macos" ]; # oh-my-zsh.plugins = [ "macos" ];
shellAliases = { shellAliases = {
currentwifi = "networksetup -getairportnetwork en0 |cut -d ':' -f2- | cut -d ' ' -f2-"; currentwifi = "networksetup -getairportnetwork en0 |cut -d ':' -f2- | cut -d ' ' -f2-";
nixdiff = "brew outdated && brew outdated --cask && mas outdated && cd ~/repos/dots && darwin-rebuild build --flake . && nvd diff /run/current-system result"; nixdiff = "brew outdated && brew outdated --cask && mas outdated && cd ~/repos/dots && darwin-rebuild build --flake . && nvd diff /run/current-system result";