Compare commits
No commits in common. "c596fcb87a0a3404fee08ffef6a467a289ae5ac6" and "1184062dc727602717077bd9cb8262b7e406e2d3" have entirely different histories.
c596fcb87a
...
1184062dc7
@ -1,12 +0,0 @@
|
||||
{
|
||||
"yaml.schemas": {
|
||||
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/playbook": [
|
||||
"./*.yaml"
|
||||
],
|
||||
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/tasks": [
|
||||
"./roles/*/handlers/*.yaml",
|
||||
"./roles/*/tasks/*.yaml",
|
||||
"./tasks.yaml"
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -9,7 +9,6 @@
|
||||
|
||||
- role: ag
|
||||
- role: bat
|
||||
- role: fzf
|
||||
- role: git
|
||||
- role: op
|
||||
- role: tree
|
||||
|
||||
@ -7,7 +7,6 @@
|
||||
- role: system-info
|
||||
|
||||
- role: ag
|
||||
- role: fzf
|
||||
- role: git
|
||||
- role: op
|
||||
- role: tree
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
- name: install homebrew package
|
||||
homebrew:
|
||||
name: fzf
|
||||
state: latest
|
||||
@ -1,13 +0,0 @@
|
||||
---
|
||||
- name: clone fzf repo
|
||||
git:
|
||||
repo: https://github.com/junegunn/fzf.git
|
||||
dest: ~/.local/src/fzf
|
||||
notify: install fzf binaries
|
||||
- meta: flush_handlers
|
||||
|
||||
- name: create symbolic links
|
||||
file:
|
||||
state: link
|
||||
src: ~/.local/src/fzf/bin/fzf
|
||||
dest: ~/.local/bin/fzf
|
||||
@ -1,12 +0,0 @@
|
||||
---
|
||||
- name: install apt package
|
||||
when: ansible_distribution == "Debian" and
|
||||
ansible_distribution_version == "unstable"
|
||||
become: true
|
||||
apt:
|
||||
name: fzf
|
||||
state: latest
|
||||
|
||||
- include_tasks: Debian-old.yaml
|
||||
when: not (ansible_distribution == "Debian" and
|
||||
ansible_distribution_version == "unstable")
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
- name: install chocolatey package
|
||||
win_chocolatey:
|
||||
name: fzf
|
||||
state: latest
|
||||
@ -1,2 +0,0 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||
@ -1,4 +1,4 @@
|
||||
---
|
||||
- name: install fzf binaries
|
||||
command:
|
||||
cmd: ~/.local/src/fzf/install --bin
|
||||
cmd: ~/.config/zsh/fzf/install --bin
|
||||
@ -21,6 +21,13 @@
|
||||
- repo: https://github.com/zsh-users/zsh-completions.git
|
||||
dest: ~/.config/zsh/zsh-completions
|
||||
|
||||
- name: clone fzf repo
|
||||
git:
|
||||
repo: https://github.com/junegunn/fzf.git
|
||||
dest: ~/.config/zsh/fzf
|
||||
notify: install fzf binaries
|
||||
- meta: flush_handlers
|
||||
|
||||
- name: create directories
|
||||
file:
|
||||
state: directory
|
||||
@ -55,6 +62,10 @@
|
||||
dest: ~/.local/share/zsh/site-functions/_layout
|
||||
- src: ~/.config/zsh/notes/_note
|
||||
dest: ~/.local/share/zsh/site-functions/_note
|
||||
- src: ~/.config/zsh/fzf/bin/fzf
|
||||
dest: ~/.local/bin/fzf
|
||||
- src: ~/.config/zsh/fzf/bin/fzf-tmux
|
||||
dest: ~/.local/bin/fzf-tmux
|
||||
- src: ~/.config/zsh/cmake-uninstall
|
||||
dest: ~/.local/bin/cmake-uninstall
|
||||
- src: ~/.config/zsh/$
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user