Update .local/share/chezmoi/software.yml, .local/share/chezmoi/home/.chezmoiexternal.toml, .local/share/chezmoi/home/private_dot_config/shell/profile.sh
This commit is contained in:
parent
a3ab23d91f
commit
69662d86f4
3 changed files with 15 additions and 1 deletions
|
@ -121,6 +121,14 @@
|
|||
clone.args = ["--depth", "1"]
|
||||
pull.args = ["--ff-only"]
|
||||
|
||||
### Git Fuzzy
|
||||
[".local/src/git-fuzzy"]
|
||||
type = "git-repo"
|
||||
url = "https://github.com/bigH/git-fuzzy.git"
|
||||
refreshPeriod = "{{ $refreshPeriod }}"
|
||||
clone.args = ["--depth", "1"]
|
||||
pull.args = ["--ff-only"]
|
||||
|
||||
### Ansible Roles / Playbook
|
||||
[".local/src/gas-station"]
|
||||
type = "git-repo"
|
||||
|
|
|
@ -90,6 +90,11 @@ if [ "$BASH_SUPPORT" = 'true' ]; then
|
|||
# . "$HOME/.local/scripts/fzf-git.bash"
|
||||
#fi
|
||||
|
||||
### git-fuzzy
|
||||
if [ -d "$HOME/.local/src/git-fuzzy/bin" ]; then
|
||||
export PATH="$HOME/.local/src/git-fuzzy/bin:$PATH"
|
||||
fi
|
||||
|
||||
### MOTD
|
||||
if [ -f "$XDG_CONFIG_HOME/shell/motd.sh" ]; then
|
||||
. "$XDG_CONFIG_HOME/shell/motd.sh"
|
||||
|
|
|
@ -2427,7 +2427,8 @@ softwarePackages:
|
|||
_home: null
|
||||
_name: git-fuzzy
|
||||
_service: null
|
||||
ansible: professormanhattan.gitfuzzy
|
||||
_notes: Installed via dotfiles
|
||||
# ansible: professormanhattan.gitfuzzy
|
||||
githubbinary:
|
||||
_bin: null
|
||||
_desc: This role performs the necessary logic to download and install binaries and other installers from GitHub Releases.
|
||||
|
|
Loading…
Reference in a new issue