diff --git a/config/bash/.bashrc b/config/bash/.bashrc index 03eed2c..9888d82 100644 --- a/config/bash/.bashrc +++ b/config/bash/.bashrc @@ -396,6 +396,7 @@ case "$OSTYPE" in [ -d "/opt/homebrew/bin" ] && appendpath "/opt/homebrew/bin" # python3 (macOS) [ -d "$HOME/Library/Python/3.8/bin" ] && appendpath "$HOME/Library/Python/3.8/bin" + [ -d "$HOME/Library/Python/3.9/bin" ] && appendpath "$HOME/Library/Python/3.9/bin" # gui things alias o="open" ;; @@ -415,19 +416,4 @@ esac [ -r "$HOME/.local/.bashrc" ] && source "$HOME/.local/.bashrc" #}}} -## section for *new* and *improved* cli tools (exa, bat, nvim) -# {{{ -# nvim -# {{{ -NVIM=$(command -v nvim) -if [ -x "$NVIM" ]; then - EDITOR="$NVIM" - VISUAL="$NVIM" -fi -alias v="$EDITOR" -alias vi="$EDITOR" -alias vim="$EDITOR" -# }}} -# }}} - # vim:ft=sh diff --git a/config/git/.gitconfig b/config/git/.gitconfig index f0cdc7e..d4491d4 100644 --- a/config/git/.gitconfig +++ b/config/git/.gitconfig @@ -11,6 +11,8 @@ [credential] username = lemonase helper = store + helper = + helper = /usr/local/share/gcm-core/git-credential-manager [color] ui = true status = auto @@ -44,3 +46,5 @@ ps = push puhs = push sm = submodule +[credential "https://dev.azure.com"] + useHttpPath = true diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index c42f8f7..a743963 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -330,4 +330,3 @@ if [ ! -f "$ZSH_SYNTAX_HIGHLIGHT_PATH" ]; then fi [ -f "$ZSH_SYNTAX_HIGHLIGHT_PATH" ] && source $ZSH_SYNTAX_HIGHLIGHT_PATH -[ -f ~/.config/.fzf.zsh ] && source ~/.config/.fzf.zsh