diff options
| author | filip <“filip.rabiega@gmail.com”> | 2026-02-04 10:55:33 +0100 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2026-02-04 10:55:33 +0100 |
| commit | 91ae0eff0b853ff80eec1c02634c8d36b1e9b02e (patch) | |
| tree | f3d166cc51c725d2cc9e9848d3199687b4babb39 /.config/shell/envvarrc | |
| parent | 6f0d171b301a0637935bb093d7fdf55bd0fe37ef (diff) | |
| download | dotfiles-91ae0eff0b853ff80eec1c02634c8d36b1e9b02e.tar.gz dotfiles-91ae0eff0b853ff80eec1c02634c8d36b1e9b02e.tar.bz2 dotfiles-91ae0eff0b853ff80eec1c02634c8d36b1e9b02e.zip | |
switch to antidote
Diffstat (limited to '.config/shell/envvarrc')
| -rw-r--r-- | .config/shell/envvarrc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.config/shell/envvarrc b/.config/shell/envvarrc index 5409662..9974529 100644 --- a/.config/shell/envvarrc +++ b/.config/shell/envvarrc @@ -29,7 +29,12 @@ for dir in \ "$HOME/.cargo/bin" \ "$HOME/.local/bin" do - [ -d "$dir" ] && PATH="$dir:$PATH" + [ -d "$dir" ] || continue + + case ":$PATH:" in + *":$dir:"*) ;; + *) PATH="$dir:$PATH" ;; + esac done export PATH @@ -66,11 +71,6 @@ export IPYTHONDIR="$XDG_CONFIG_HOME/ipython" export RENPY_USER="$HOME/langs/python/renpy" -# ZSH -export ZVM_SYSTEM_CLIPBOARD_ENABLED="true" -export ZVM_CLIPBOARD_COPY_CMD="xclip -selection clipboard" -export ZVM_CLIPBOARD_PASTE_CMD="xclip -selection clipboard -o" - # Neovim export NVIMPLUGINS="$XDG_CONFIG_HOME/nvim/lua/plugins" export NVIMSNIPPETS="$XDG_CONFIG_HOME/nvim/lua/snips" |
