diff --git a/playbooks/bootstrap.yml b/playbooks/bootstrap.yml index 92147b0..95a01f6 100644 --- a/playbooks/bootstrap.yml +++ b/playbooks/bootstrap.yml @@ -44,8 +44,6 @@ tags: zsh - role: shell/tmux tags: tmux - - role: editors/neovim - tags: neovim # Directory for temporary files - role: tmpfiles @@ -85,17 +83,21 @@ tags: hcv # Install and configure Emacs - - role: editors/emacs + - role: editor_emacs tags: emacs # Install and configure VSCode - - role: editors/vscode + - role: editor_vscode tags: vscode # Install and configure Helix - - role: editors/helix + - role: editor_helix tags: helix + # Install and configure neovim + - role: editor_neovim + tags: neovim + tasks: # Install the Wireguard VPNs - name: Wireguard diff --git a/roles/editors/emacs/tasks/install.yml b/roles/editor_emacs/tasks/install.yml similarity index 100% rename from roles/editors/emacs/tasks/install.yml rename to roles/editor_emacs/tasks/install.yml diff --git a/roles/editors/emacs/tasks/main.yml b/roles/editor_emacs/tasks/main.yml similarity index 100% rename from roles/editors/emacs/tasks/main.yml rename to roles/editor_emacs/tasks/main.yml diff --git a/roles/editors/helix/files/config.toml b/roles/editor_helix/files/config.toml similarity index 100% rename from roles/editors/helix/files/config.toml rename to roles/editor_helix/files/config.toml diff --git a/roles/editors/helix/tasks/install_AlmaLinux.yml b/roles/editor_helix/tasks/install_AlmaLinux.yml similarity index 100% rename from roles/editors/helix/tasks/install_AlmaLinux.yml rename to roles/editor_helix/tasks/install_AlmaLinux.yml diff --git a/roles/editors/helix/tasks/install_Archlinux.yml b/roles/editor_helix/tasks/install_Archlinux.yml similarity index 100% rename from roles/editors/helix/tasks/install_Archlinux.yml rename to roles/editor_helix/tasks/install_Archlinux.yml diff --git a/roles/editors/helix/tasks/install_CentOS.yml b/roles/editor_helix/tasks/install_CentOS.yml similarity index 100% rename from roles/editors/helix/tasks/install_CentOS.yml rename to roles/editor_helix/tasks/install_CentOS.yml diff --git a/roles/editors/helix/tasks/install_Debian.yml b/roles/editor_helix/tasks/install_Debian.yml similarity index 100% rename from roles/editors/helix/tasks/install_Debian.yml rename to roles/editor_helix/tasks/install_Debian.yml diff --git a/roles/editors/helix/tasks/install_Fedora.yml b/roles/editor_helix/tasks/install_Fedora.yml similarity index 100% rename from roles/editors/helix/tasks/install_Fedora.yml rename to roles/editor_helix/tasks/install_Fedora.yml diff --git a/roles/editors/helix/tasks/install_Ubuntu.yml b/roles/editor_helix/tasks/install_Ubuntu.yml similarity index 100% rename from roles/editors/helix/tasks/install_Ubuntu.yml rename to roles/editor_helix/tasks/install_Ubuntu.yml diff --git a/roles/editors/helix/tasks/install_fedora-family.yml b/roles/editor_helix/tasks/install_fedora-family.yml similarity index 100% rename from roles/editors/helix/tasks/install_fedora-family.yml rename to roles/editor_helix/tasks/install_fedora-family.yml diff --git a/roles/editors/helix/tasks/install_generic.yml b/roles/editor_helix/tasks/install_generic.yml similarity index 100% rename from roles/editors/helix/tasks/install_generic.yml rename to roles/editor_helix/tasks/install_generic.yml diff --git a/roles/editors/helix/tasks/install_openSUSE Tumbleweed.yml b/roles/editor_helix/tasks/install_openSUSE Tumbleweed.yml similarity index 100% rename from roles/editors/helix/tasks/install_openSUSE Tumbleweed.yml rename to roles/editor_helix/tasks/install_openSUSE Tumbleweed.yml diff --git a/roles/editors/helix/tasks/main.yml b/roles/editor_helix/tasks/main.yml similarity index 100% rename from roles/editors/helix/tasks/main.yml rename to roles/editor_helix/tasks/main.yml diff --git a/roles/editors/neovim/tasks/install.yml b/roles/editor_neovim/tasks/install.yml similarity index 100% rename from roles/editors/neovim/tasks/install.yml rename to roles/editor_neovim/tasks/install.yml diff --git a/roles/editors/neovim/tasks/main.yml b/roles/editor_neovim/tasks/main.yml similarity index 100% rename from roles/editors/neovim/tasks/main.yml rename to roles/editor_neovim/tasks/main.yml diff --git a/roles/editors/vscode/files/code-url-handler.desktop b/roles/editor_vscode/files/code-url-handler.desktop similarity index 100% rename from roles/editors/vscode/files/code-url-handler.desktop rename to roles/editor_vscode/files/code-url-handler.desktop diff --git a/roles/editors/vscode/files/code.desktop b/roles/editor_vscode/files/code.desktop similarity index 100% rename from roles/editors/vscode/files/code.desktop rename to roles/editor_vscode/files/code.desktop diff --git a/roles/editors/vscode/files/keybindings.json b/roles/editor_vscode/files/keybindings.json similarity index 100% rename from roles/editors/vscode/files/keybindings.json rename to roles/editor_vscode/files/keybindings.json diff --git a/roles/editors/vscode/files/settings.json b/roles/editor_vscode/files/settings.json similarity index 100% rename from roles/editors/vscode/files/settings.json rename to roles/editor_vscode/files/settings.json diff --git a/roles/editors/vscode/files/update.sh b/roles/editor_vscode/files/update.sh similarity index 100% rename from roles/editors/vscode/files/update.sh rename to roles/editor_vscode/files/update.sh diff --git a/roles/editors/vscode/tasks/main.yml b/roles/editor_vscode/tasks/main.yml similarity index 100% rename from roles/editors/vscode/tasks/main.yml rename to roles/editor_vscode/tasks/main.yml