From 12fb9ecc242867b03626d1c52e5e84799ab330c8 Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 17 Apr 2025 22:59:36 -0500 Subject: Redo nvim to use init.lua --- sh/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index ff237a1..d798a71 100644 --- a/sh/profile +++ b/sh/profile @@ -50,7 +50,7 @@ export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc export RENPY_PATH_TO_SAVES="$XDG_DATA_HOME" export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc export XAUTHORITY="$XDG_RUNTIME_DIR"/X11/Xauthority -export VIMINIT="set nocp | source ${XDG_CONFIG_HOME:-$HOME.config}/vim/vimrc" +#export VIMINIT="set nocp | source ${XDG_CONFIG_HOME:-$HOME.config}/vim/vimrc" export ANDROID_USER_HOME="$XDG_DATA_HOME"/android export XCURSOR_PATH="/usr/share/icons:$XDG_DATA_HOME/icons" export PYTHONSTARTUP="$XDG_CONFIG_HOME"/python/pythonrc -- cgit v1.2.3 From 10b7f570ac1488468ce7e308f22f77f276c16f67 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 25 Apr 2025 19:19:37 -0500 Subject: Remove QT env that broke Plasma --- sh/profile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index d798a71..664af69 100644 --- a/sh/profile +++ b/sh/profile @@ -56,14 +56,14 @@ export XCURSOR_PATH="/usr/share/icons:$XDG_DATA_HOME/icons" export PYTHONSTARTUP="$XDG_CONFIG_HOME"/python/pythonrc # Scaling -export QT_AUTO_SCREEN_SCALE_FACTOR=0 -export QT_SCALE_FACTOR=1 -export QT_SCREEN_SCALE_FACTORS="1;1;1" +#export QT_AUTO_SCREEN_SCALE_FACTOR=0 +#export QT_SCALE_FACTOR=1 +#export QT_SCREEN_SCALE_FACTORS="1;1;1" export GDK_SCALE=1 export GDK_DPI_SCALE=1 # Theming -export QT_QPA_PLATFORMTHEME=qt6ct +#export QT_QPA_PLATFORMTHEME=qt6ct # Fix wayland stuff export MOZ_ENABLE_WAYLAND=1 -- cgit v1.2.3 From 7306fc24e1b944d5bd2c6f3f10b8606937103e9d Mon Sep 17 00:00:00 2001 From: ZachIR Date: Wed, 30 Apr 2025 23:34:29 -0500 Subject: Re-enable qt6ct (not using plasma) --- sh/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index 664af69..a97e9e8 100644 --- a/sh/profile +++ b/sh/profile @@ -63,7 +63,7 @@ export GDK_SCALE=1 export GDK_DPI_SCALE=1 # Theming -#export QT_QPA_PLATFORMTHEME=qt6ct +export QT_QPA_PLATFORMTHEME=qt6ct # Fix wayland stuff export MOZ_ENABLE_WAYLAND=1 -- cgit v1.2.3 From 5412cb6d6b3a958429a9bf781a95ee81fd29d0b4 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 29 Jun 2025 23:19:57 -0500 Subject: Make more things XDG compliant Specifically .dotnet, .zplug, and .zcompdump --- sh/profile | 2 ++ zsh/zshrc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index a97e9e8..4337cc0 100644 --- a/sh/profile +++ b/sh/profile @@ -22,6 +22,8 @@ export ADB_VENDOR_KEY="$XDG_CONFIG_HOME"/android export LESSHISTFILE=- # Fixing Paths +export ZPLUG_HOME="$XDG_DATA_HOME/zplug" +export DOTNET_CLI_HOME="$XDG_DATA_HOME"/dotnet export MBSYNCRC="$XDG_CONFIG_HOME"/isync/mbsyncrc export ATOM_HOME="$XDG_DATA_HOME"/atom export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc diff --git a/zsh/zshrc b/zsh/zshrc index f748913..532fb15 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -80,6 +80,6 @@ if [ -n "$ZPLUG_INSTALLED" ]; then fi autoload -Uz compinit -compinit +compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION" #zprof -- cgit v1.2.3