mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
move scripts from zsh/bin to scripts
This commit is contained in:
parent
74e5fd2e54
commit
e5877a77fd
7 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ is_android() {
|
||||||
}
|
}
|
||||||
|
|
||||||
command_exists() {
|
command_exists() {
|
||||||
command -v "$1" >/dev/null 2>&1
|
command -v "$1" &>/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
source_if_exists() {
|
source_if_exists() {
|
||||||
|
|
|
@ -47,7 +47,7 @@ path=("$GOPATH/bin" "${path[@]}")
|
||||||
path=(~/.local/bin "${path[@]}")
|
path=(~/.local/bin "${path[@]}")
|
||||||
|
|
||||||
# add my binaries and completions
|
# add my binaries and completions
|
||||||
path=("$ZSH_DOTFILES/bin" "${path[@]}")
|
path=("$ZSH_DOTFILES/../scripts" "${path[@]}")
|
||||||
fpath=("$ZSH_DOTFILES/completions" "${fpath[@]}")
|
fpath=("$ZSH_DOTFILES/completions" "${fpath[@]}")
|
||||||
|
|
||||||
# check for Rust installed via rustup
|
# check for Rust installed via rustup
|
||||||
|
|
Loading…
Reference in a new issue