changed directories and addet fzf to zsh

This commit is contained in:
piecka 2024-12-11 15:02:36 +01:00
parent 0acd581d40
commit cb928bb0b4
428 changed files with 20659 additions and 15 deletions

28
.zshrc
View file

@ -141,21 +141,25 @@ _init (){
fi
# ─< environment variables for zsh >──────────────────────────────────────────────────────
local zconf="$HOME/.zsh"
local zAutosg="$zconf/autosuggestions/zsh-autosuggestions.zsh"
local zSynthl="$zconf/syntax-highlighting/zsh-syntax-highlighting.zsh"
local zTruecolor="$zconf/custom/256color.zsh"
local zAutopairs="$zconf/autopairs/autopair.zsh"
local zFzfCd="$zconf/custom/zsh-interactive-cd.plugin.zsh"
local zAgentManagement="$zconf/custom/agent.zsh"
local zCommandNotFound="$zconf/custom/command-not-found.plugin.zsh"
local zExtraction="$zconf/extract/extract.plugin.zsh"
local zplug="$HOME/.zsh/plugins"
local zFzfCd="$zplug/custom/zsh-interactive-cd.plugin.zsh"
local zTruecolor="$zplug/custom/256color.zsh"
local zAgentManagement="$zplug/custom/agent.zsh"
local zCommandNotFound="$zplug/custom/command-not-found.plugin.zsh"
local zFzf="$zplug/fzf-zsh-plugin/fzf-zsh-plugin.plugin.zsh"
local zAutosg="$zplug/autosuggestions/zsh-autosuggestions.zsh"
local zSynthl="$zplug/syntax-highlighting/zsh-syntax-highlighting.zsh"
local zAutopairs="$zplug/autopairs/autopair.zsh"
local zExtraction="$zplug/extract/extract.plugin.zsh"
local _pluginlist=(
"$zAutosg"
"$zSynthl"
"$zTruecolor"
"$zAutopairs"
"$zFzf"
"$zFzfCd"
"$zAgentManagement"
"$zCommandNotFound"
@ -619,8 +623,10 @@ _environment(){
# [ -e "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
# bun completions
[ -s "/home/pika/.bun/_bun" ] && . "$HOME/.bun/_bun"
[ -s "/home/pika/.bun/_bun" ] && export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH"
[ -s "$HOME/.bun/_bun" ] && . "$HOME/.bun/_bun"
[ -s "$HOME/.bun/_bun" ] && export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH"
[ -d "$HOME/.zsh/plugins/fzf-zsh-plugin/bin" ] && export PATH="$HOME/.zsh/plugins/fzf-zsh-plugin/bin:$PATH"
}
_end(){