1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

set -x should be set -xg

This commit is contained in:
Ryan Kes 2020-05-18 21:12:24 +02:00
parent 29e225797d
commit 84abe00665
2 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
# Start X at login # Start X at login
if status is-login if status is-login
if test -z "$DISPLAY" -a $XDG_VTNR = 1 if test -z "$DISPLAY" -a $XDG_VTNR = 1
set -x -x SXHKD_SHELL '/usr/bin/sh' set -xg -x SXHKD_SHELL '/usr/bin/sh'
# Enable numberlock # Enable numberlock
if [ -x "/usr/bin/numlockx" ] if [ -x "/usr/bin/numlockx" ]
@ -53,10 +53,10 @@ end
set -g TERMINAL "alacritty" set -g TERMINAL "alacritty"
# pkg editor # pkg editor
set -x VISUAL "nvim" set -xg VISUAL "nvim"
# editor # editor
set -x EDITOR "nvim" set -xg EDITOR "nvim"
# Enable password store extensions # Enable password store extensions
set -g PASSWORD_STORE_ENABLE_EXTENSIONS "true" set -g PASSWORD_STORE_ENABLE_EXTENSIONS "true"
@ -65,26 +65,26 @@ set -g PASSWORD_STORE_ENABLE_EXTENSIONS "true"
set -g PASSWORD_STORE_DIR ~/.local/share/pass set -g PASSWORD_STORE_DIR ~/.local/share/pass
# Use alternative muhome # Use alternative muhome
set -x MU_HOME ~/.cache/mu set -xg MU_HOME ~/.cache/mu
# Load xinit from the proper directory # Load xinit from the proper directory
set -x XINITRC ~/X11/xinitrc set -xgg XINITRC ~/.config/X11/xinitrc
# Make sure rust uses the proper directory # Make sure rust uses the proper directory
set -x RUSTUP_HOME ~/.local/share/rustup set -xg RUSTUP_HOME ~/.local/share/rustup
# Set custom nprmrc path # Set custom nprmrc path
set -x NPM_CONFIG_USERCONFIG ~/.config/npm/npmrc set -xg NPM_CONFIG_USERCONFIG ~/.config/npm/npmrc
# bobthefish # bobthefish
set -x theme_nerd_fonts yes set -xg theme_nerd_fonts yes
set -x theme_color_scheme gruvbox set -xg theme_color_scheme gruvbox
# sudope # sudope
set -x sudope_sequence \e\e set -xg sudope_sequence \e\e
# Set tmux tmpdir to proper directory # Set tmux tmpdir to proper directory
set -x TMUX_TMPDIR "$XDG_RUNTIME_DIR" set -xg TMUX_TMPDIR "$XDG_RUNTIME_DIR"
# nvim alias # nvim alias
alias v="nvim" alias v="nvim"

View File

@ -46,7 +46,7 @@ export PASSWORD_STORE_DIR=~/.local/share/pass
export MU_HOME=~/.cache/mu export MU_HOME=~/.cache/mu
# Load xinit from the proper directory # Load xinit from the proper directory
export XINITRC=~/X11/xinitrc export XINITRC=~/.config/X11/xinitrc
# This needs to be set for bspwm to see config # This needs to be set for bspwm to see config
export XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME="$HOME/.config"