This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ROOT_DIR=$(asdf where php) | |
CONF_D_DIR="${ROOT_DIR}/conf.d" | |
# Checks if the module name has been passed | |
if [ "$#" -ne 1 ]; then | |
echo "Uso: $0 {mod_name}" | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ROOT_DIR=$(asdf where php) | |
MODS_AVAILABLE_DIR="${ROOT_DIR}/mods-available" | |
CONF_D_DIR="${ROOT_DIR}/conf.d" | |
# Checks if the module name has been passed | |
if [ "$#" -ne 1 ]; then | |
echo "Uso: $0 {mod_name}" | |
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load hooks | |
source ~/.zsh_hooks.zsh | |
# Zstyle setting | |
zstyle ':antidote:bundle' use-friendly-names 'yes' | |
zstyle ':antidote:bundle' file '.zsh_plugins' | |
zstyle ':antidote:static' file '.zsh_dump_plugins.zsh' | |
#zstyle ':omz:plugin:git' alias yes | |
load_theme "spaceship" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ohmyzsh/ohmyzsh | |
spaceship-prompt/spaceship-prompt | |
zdharma/fast-syntax-highlighting | |
zsh-users/zsh-autosuggestions | |
zsh-users/zsh-completions | |
junegunn/fzf kind:clone | |
junegunn/fzf path:shell kind:zsh | |
junegunn/fzf path:bin kind:path |