Merge branch 'master' of git.mvl.sh:vleeuwenmenno/dotfiles
This commit is contained in:
commit
9a3affe4c1
2
.bashrc
2
.bashrc
@ -164,7 +164,7 @@ fi
|
|||||||
# Source ble.sh if it exists
|
# Source ble.sh if it exists
|
||||||
if [[ -f "${HOME}/.nix-profile/share/blesh/ble.sh" ]]; then
|
if [[ -f "${HOME}/.nix-profile/share/blesh/ble.sh" ]]; then
|
||||||
source "${HOME}/.nix-profile/share/blesh/ble.sh"
|
source "${HOME}/.nix-profile/share/blesh/ble.sh"
|
||||||
|
|
||||||
# Custom function for fzf history search
|
# Custom function for fzf history search
|
||||||
function fzf_history_search() {
|
function fzf_history_search() {
|
||||||
local selected
|
local selected
|
||||||
|
@ -71,7 +71,6 @@
|
|||||||
- io.github.johannesboehler2.BmiCalculator
|
- io.github.johannesboehler2.BmiCalculator
|
||||||
- io.github.nokse22.Exhibit
|
- io.github.nokse22.Exhibit
|
||||||
- net.nokyan.Resources
|
- net.nokyan.Resources
|
||||||
- dev.zed.Zed
|
|
||||||
- io.github.flattool.Ignition
|
- io.github.flattool.Ignition
|
||||||
- io.github.bytezz.IPLookup
|
- io.github.bytezz.IPLookup
|
||||||
- org.gaphor.Gaphor
|
- org.gaphor.Gaphor
|
||||||
|
@ -31,6 +31,9 @@
|
|||||||
- name: Include Firefox PWA tasks
|
- name: Include Firefox PWA tasks
|
||||||
ansible.builtin.import_tasks: tasks/workstations/firefoxpwa.yml
|
ansible.builtin.import_tasks: tasks/workstations/firefoxpwa.yml
|
||||||
|
|
||||||
|
- name: Include Zed Editor tasks
|
||||||
|
ansible.builtin.import_tasks: tasks/workstations/zed-editor.yml
|
||||||
|
|
||||||
- name: Include purge LibreOffice tasks
|
- name: Include purge LibreOffice tasks
|
||||||
ansible.builtin.import_tasks: tasks/workstations/purge-libreoffice.yml
|
ansible.builtin.import_tasks: tasks/workstations/purge-libreoffice.yml
|
||||||
|
|
||||||
|
11
config/ansible/tasks/workstations/zed-editor.yml
Normal file
11
config/ansible/tasks/workstations/zed-editor.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
- name: Check if Zed Editor is installed
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: zed --version
|
||||||
|
register: zed_version
|
||||||
|
ignore_errors: true
|
||||||
|
|
||||||
|
- name: Install Zed Editor
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: curl -f https://zed.dev/install.sh | sh
|
||||||
|
ignore_errors: true
|
||||||
|
when: zed_version.rc != 0
|
@ -32,3 +32,5 @@
|
|||||||
[credential "https://gist.github.com"]
|
[credential "https://gist.github.com"]
|
||||||
helper =
|
helper =
|
||||||
helper = !/home/menno/.nix-profile/bin/gh auth git-credential
|
helper = !/home/menno/.nix-profile/bin/gh auth git-credential
|
||||||
|
[gpg "ssh"]
|
||||||
|
program = /opt/1Password/op-ssh-sign
|
||||||
|
Loading…
x
Reference in New Issue
Block a user