From 16f1c94ab5f023da57a8ac93c8b5590177fc76fc Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Fri, 17 Nov 2023 23:38:11 +0300 Subject: [PATCH] Improvements --- .zshrc | 7 +++++++ install.sh | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 1b8445a..9704878 100644 --- a/.zshrc +++ b/.zshrc @@ -26,6 +26,12 @@ source $ZSH/oh-my-zsh.sh ################################################################################ +setopt nocaseglob # ignore case +setopt correct # correct spelling mistakes +setopt auto_cd # if there is no app with given name, try to cd to it + +################################################################################ + SSH_QUIET_OPTS="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=quiet" ################################################################################ @@ -46,6 +52,7 @@ export GOPATH=~/projects/gocode export GOBIN=~/projects/gocode/bin export PATH=~/projects/gocode/bin:$PATH +# Add local bin dir to PATH export PATH=$HOME/.bin:/usr/local/bin:$PATH # Aliases diff --git a/install.sh b/install.sh index 18018ab..649a1bc 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ set -e ################################################################################ -VERSION="2.3.5" +VERSION="2.3.6" ################################################################################