dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit 41e33aa439425db53b9f1cf8f684b3de39d9099b
parent f32c2d954c6c0346fc49a3a47eece0e2cbd8811c
Author: finwo <finwo@pm.me>
Date:   Tue,  2 Nov 2021 14:03:53 +0100

Fixed nvim issue with term; added gcloud-sdk in zshrc

Diffstat:
Mzsh/home/.zshrc | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -90,6 +90,12 @@ if [[ $TERM == screen* ]]; then export SCREEN=yes fi +# TERM +# nvim has issues with xterm-256color +if [[ $TERM == xterm-256color ]]; then + export TERM=xterm-color +fi + # Auto-cd setopt autocd @@ -128,6 +134,16 @@ if [ -f '/home/finwo/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/finwo/google-cloud-sdk/completion.zsh.inc' fi +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/home/finwo/Downloads/google-cloud-sdk/path.zsh.inc' ]; then + . '/home/finwo/Downloads/google-cloud-sdk/path.zsh.inc' +fi + +# The next line enables shell command completion for gcloud. +if [ -f '/home/finwo/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then + . '/home/finwo/Downloads/google-cloud-sdk/completion.zsh.inc' +fi + # }}} # Go binaries {{{ if [ -d "${HOME}/go/bin" ]; then @@ -252,3 +268,4 @@ fi export PNPM_HOME="/home/finwo/.local/share/pnpm" export PATH="$PNPM_HOME:$PATH" # }}} +