add aichat, zsh completion dir

This commit is contained in:
Jason Swank
2025-01-19 21:20:57 +00:00
parent 8cfa5d009d
commit 9991e791dd
6 changed files with 81 additions and 4 deletions

View File

@@ -4,6 +4,8 @@ alias vim='nvim'
alias vi='nvim'
alias w3='w3m -T text/html'
fpath+=~/.local/share/zsh/functions
path+=(~/bin)
path+=(~/.local/bin)
path+=($GOPATH/bin)
@@ -12,8 +14,6 @@ export PATH
# allow for # to be interpreted as a comment on the command line
setopt interactivecomments
# cd tricks
alias -- -='cd -'
setopt auto_cd # there is no binary by that name in your $PATH, your shell will cd into it that directory
# use vi-style keymap
@@ -87,7 +87,7 @@ if [ -e $HOME/cfa-work/.zshrc ]; then
. $HOME/cfa-work/.zshrc
fi
for env in $HOME/.okta/.env $HOME/.aws/.env $HOME/.config/git/.env; do
for env in $HOME/.okta/.env $HOME/.aws/.env $HOME/.config/github/.env $HOME/.config/aichat/.env; do
if [ -r $env ]; then
export $(xargs < $env)
fi