diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index e9caa67..f8a67e0 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -1452,7 +1452,7 @@ background #eeeeee #: The foreground and background colors. -background_opacity 0.6 +background_opacity 1.0 #: The opacity of the background. A number between zero and one, where #: one is opaque and zero is fully transparent. This will only work if @@ -1478,7 +1478,7 @@ background_opacity 0.6 #: will only work if dynamic_background_opacity was enabled in the #: original config. - background_blur 24 + background_blur 0 #: Set to a positive value to enable background blur (blurring of the #: visuals behind a transparent window) on platforms that support it. diff --git a/.hammerspoon/init.lua b/.hammerspoon/init.lua index dd86df3..ad27674 100644 --- a/.hammerspoon/init.lua +++ b/.hammerspoon/init.lua @@ -13,7 +13,7 @@ local DEFAULTS = { local APPS = { browser = {{"Zen"}, {"Chromium"}, {"Safari"}}, - editors = {DEFAULTS["EDITOR"], {"Nova"}, {"Xcode"}, {"Code", "Visual Studio Code", "VSCodium"}, {"IntelliJ IDEA"}}, + editors = {DEFAULTS["EDITOR"], {"Nova"}, {"Xcode"}, {"Code", "VSCodium"}, {"IntelliJ IDEA"}}, chats = {{"Microsoft Teams"}, {"Telegram"}}, messengers = {{"Messages"}, {"Telegram"}, {"Signal"}}, music = {DEFAULTS["MUSIC"], {"Music"}}, diff --git a/.zshrc b/.zshrc index bd33efb..b756672 100644 --- a/.zshrc +++ b/.zshrc @@ -258,19 +258,6 @@ export GOROOT="/opt/homebrew/opt/golang/libexec" export GOPATH="${HOME}/src/go" export PATH="${GOPATH}/bin:${PATH}" -### PYTHON -function load_pyenv() { - if command -v pyenv &> /dev/null; then - eval "$(pyenv init --path)" - eval "$(pyenv init - --no-rehash)" - if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi - pyenv virtualenvwrapper - unset -f load_pyenv - fi -} -# Only load pyenv when needed -alias pyenv='load_pyenv && pyenv' - ### RUBY export RUBY_VERSION=3.3.0 export GEM_HOME=$HOME/.gem