zshrc changes and correct transparent toggle func

This commit is contained in:
spinach 2023-04-10 12:04:18 -04:00
parent 47c678223b
commit a40dd61807

View File

@ -25,18 +25,27 @@ export GOPATH="$HOME/.local/share/go"
# Path to your oh-my-zsh installation. # Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh" export ZSH="$HOME/.oh-my-zsh"
# Would you like to use another custom folder than $ZSH/custom?
export ZSH_CUSTOM=$HOME/.local/share/oh-my-zsh/custom
plugins=( plugins=(
zsh-autosugggestions zsh-autosugggestions
) )
# Set name of the theme to load --- if set to "random", it will # ZSH theme
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
#list of good themes [amuse,aussiegeek,passion]
ZSH_THEME="powerlevel10k/powerlevel10k" ZSH_THEME="powerlevel10k/powerlevel10k"
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
zsh-autosuggestions
git
)
source $ZSH/oh-my-zsh.sh
# Uncomment the following line to use hyphen-insensitive completion. # Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable. # Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true" # HYPHEN_INSENSITIVE="true"
@ -54,20 +63,7 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# see 'man strftime' for details. # see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy" # HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
ZSH_CUSTOM=$HOME/.local/share/oh-my-zsh/custom
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
zsh-autosuggestions
git
)
source $ZSH/oh-my-zsh.sh
# export LANG=en_US.UTF-8 # export LANG=en_US.UTF-8
@ -84,14 +80,12 @@ source $ZSH/oh-my-zsh.sh
# #
# switching to neovim # switching to neovim
alias vim="nvim" alias vim="nvim"
# helpful aliasis
alias ifconfig="/sbin/ifconfig"
# git stuff
alias gadd="git add ."
alias gbug="git add . && git commit -m 'bug fixes'"
alias gp="git push"
# bb ip remove
# helpful aliasis
#alias ifconfig="/sbin/ifconfig"
# bb ip remove work related
alias bbrm='ssh-keygen -f "/home/kdeppe/.ssh/known_hosts" -R "192.168.7.2"' alias bbrm='ssh-keygen -f "/home/kdeppe/.ssh/known_hosts" -R "192.168.7.2"'
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
@ -114,3 +108,9 @@ alias vimwiki="nvim '+cd %:p:h' $HOME/vimwiki/index.md"
# yt-dlp alias for simplicity # yt-dlp alias for simplicity
alias yt-vid="yt-dlp -P $HOME/media/video" alias yt-vid="yt-dlp -P $HOME/media/video"
alias yt-mu="yt-dlp -P $HOME/media/music -x -f m4a/bestaudio --add-metadata --recode mp4" alias yt-mu="yt-dlp -P $HOME/media/music -x -f m4a/bestaudio --add-metadata --recode mp4"
# git aliases
alias gadd="git add ."
alias gbug="git add . && git commit -m 'bug fixes'"
alias gp="git push"
alias glog="git log --pretty --oneline --graph --all --decorate"