This commit is contained in:
2025-10-02 22:13:09 -04:00
parent 55fb5e3756
commit 99ec21d3e2
9 changed files with 37 additions and 50 deletions

View File

@@ -0,0 +1,4 @@
alias ls='ls --color=auto'
alias ll='ls -lah'
alias gg='lazygit'
alias v='nvim'

View File

@@ -0,0 +1,2 @@
export EDITOR=nvim
export SUDO_EDITOR="$EDITOR"

View File

@@ -0,0 +1,4 @@
take() {
mkdir $1;
cd $1
}

View File

@@ -0,0 +1,7 @@
if command -v starship &> /dev/null; then
eval "$(starship init zsh)"
fi
if command -v brew &> /dev/null; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi

View File

@@ -0,0 +1 @@
bindkey -e

View File

@@ -0,0 +1,6 @@
[ -f "${XDG_DATA_HOME:-$HOME/.local/share}/zap/zap.zsh" ] && source "${XDG_DATA_HOME:-$HOME/.local/share}/zap/zap.zsh"
plug "zsh-users/zsh-autosuggestions"
plug "zap-zsh/supercharge"
plug "zsh-users/zsh-syntax-highlighting"
plug "zap-zsh/sudo"
plug "Aloxaf/fzf-tab"

View File

@@ -0,0 +1,4 @@
autoload -Uz compinit
compinit
if [ "$TMUX" = "" ]; then tmux; fi

View File

@@ -0,0 +1,2 @@
export PATH=$HOME/.local/bin:$PATH
export PATH=$HOME/opt/bin:$PATH