fixed double slashes in PATH

modified:   .config/qutebrowser/autoconfig.yml
	modified:   .zprofile
This commit is contained in:
Alexander Bocken 2020-09-10 14:05:06 +02:00
parent b52968cac9
commit 6d4a64ac01
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ settings:
bindings.commands:
global:
normal:
',C': spawn -d st castyt {url}
',V': spawn -d mpv {url}
',X': spawn -d dmenuhandler {url}
',c': hint links spawn -d st castyt {hint-url}

View File

@ -6,9 +6,9 @@
# to clean up.
# Adds `~/.local/bin` to $PATH
export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
# Adds cargo bin path to $PATH
export PATH="$PATH:$(du "$HOME/.local/share/cargo/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export PATH="$PATH:$(du "$HOME/.local/share/cargo/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
# Default programs:
export EDITOR="nvim"