oxidise pt 1

This commit is contained in:
Adam Jeniski 2023-02-24 23:39:30 -05:00
parent 71da06bbbd
commit 44bc64afb9
2 changed files with 3 additions and 8 deletions

View File

@ -116,10 +116,6 @@ if ! shopt -oq posix; then
fi fi
fi fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
#add time to prompt #add time to prompt
export PROMPT_COMMAND="echo -n \[\$(date +%H:%M:%S)\]\ " export PROMPT_COMMAND="echo -n \[\$(date +%H:%M:%S)\]\ "

7
.zshrc
View File

@ -24,10 +24,6 @@ alias ohmyzsh="nvim ~/.oh-my-zsh"
export XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME="$HOME/.config"
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
#setup dotfile aliases #setup dotfile aliases
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
@ -83,6 +79,7 @@ export PATH="/opt/homebrew/opt/cython/bin:$PATH"
export PATH="/opt/homebrew/opt/llvm/bin:$PATH" export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
export PATH="$HOME/.emacs.d/bin:$PATH" export PATH="$HOME/.emacs.d/bin:$PATH"
export PATH="$HOME/.scripts/utils:$PATH" export PATH="$HOME/.scripts/utils:$PATH"
export PATH="$HOME/.local/share/bob/nvim-bin:$PATH"
export HIGHLIGHT_STYLE=manxome export HIGHLIGHT_STYLE=manxome
@ -90,6 +87,8 @@ source $(brew --prefix)/opt/zsh-vi-mode/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh
export STARSHIP_CONFIG=~/.config/starship/starship.toml export STARSHIP_CONFIG=~/.config/starship/starship.toml
export RUSTC_WRAPPER=~/.cargo/bin/sccache
_bb_tasks() { _bb_tasks() {
local matches=(`bb tasks |tail -n +3 |cut -f1 -d ' '`) local matches=(`bb tasks |tail -n +3 |cut -f1 -d ' '`)
compadd -a matches compadd -a matches