Initial commit

This commit is contained in:
2026-03-22 18:04:35 +01:00
commit 1d5ca0aa29
74 changed files with 2537 additions and 0 deletions

34
dot_zshrc Normal file
View File

@@ -0,0 +1,34 @@
autoload -Uz compinit
compinit
HISTFILE=~/.zsh_history
SAVEHIST=1000
HISTSIZE=1000
bindkey '^R' history-incremental-search-backward
bindkey '^r' history-incremental-pattern-search-backward
setopt hist_ignore_dups
setopt appendhistory
unsetopt beep
# zstyle :compinstall filename '/home/zam/.zshrc'
export EDITOR='nvim'
alias vim='nvim'
alias cd='z'
alias ls='eza --icons=always'
export path
type starship_zle-keymap-select >/dev/null || \
{
eval "$(starship init zsh)"
}
eval "$(zoxide init zsh)"
source /usr/share/zsh/plugins/zsh-autocomplete/zsh-autocomplete.plugin.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fastfetch