obsidian plugin, mygvm enhancements

This commit is contained in:
Jacob Bohanon
2024-04-05 07:41:23 -04:00
parent 7367c425fb
commit b6689da485
9 changed files with 96 additions and 26 deletions

View File

@@ -1,4 +1,9 @@
export EDITOR=nvim
# Set homebrew before my own path mods so brew binaries (specifically go)
# don't override my expected tooling
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:/opt/local/bin:$PATH
@@ -34,6 +39,8 @@ alias kci='git commit --allow-empty --message "kick CI" && git push'
alias cddf='cd $HOME/.dotfiles'
alias nvdf='cddf && nvim $HOME/.dotfiles/README.md'
alias cdjb='cd $HOME/src/github.com/jbohanon'
alias cdo='cd $HOME/Documents/obsidian/work'
alias nvo='cdo && nvim .'
if [[ $(uname) == Linux ]]; then
alias pbcopy='xsel --clipboard --input'
@@ -56,4 +63,3 @@ export TERM=xterm-256color
export STARSHIP_CONFIG=~/.config/zsh/starship.toml
eval "$(starship init zsh)"