fixed double slashes in PATH
modified: .config/qutebrowser/autoconfig.yml modified: .zprofile
This commit is contained in:
parent
b52968cac9
commit
6d4a64ac01
@ -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}
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user