From a11b009120a3bf3046c0342be09259b80ceb30f9 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Thu, 12 Dec 2024 13:38:27 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20rename=20=E2=80=B9editor=E2=80=BA=20gr?= =?UTF-8?q?oup=20of=20roles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matej Focko --- playbooks/bootstrap.yml | 12 +++++++----- .../emacs => editor_emacs}/tasks/install.yml | 0 roles/{editors/emacs => editor_emacs}/tasks/main.yml | 0 .../helix => editor_helix}/files/config.toml | 0 .../tasks/install_AlmaLinux.yml | 0 .../tasks/install_Archlinux.yml | 0 .../helix => editor_helix}/tasks/install_CentOS.yml | 0 .../helix => editor_helix}/tasks/install_Debian.yml | 0 .../helix => editor_helix}/tasks/install_Fedora.yml | 0 .../helix => editor_helix}/tasks/install_Ubuntu.yml | 0 .../tasks/install_fedora-family.yml | 0 .../helix => editor_helix}/tasks/install_generic.yml | 0 .../tasks/install_openSUSE Tumbleweed.yml | 0 roles/{editors/helix => editor_helix}/tasks/main.yml | 0 .../neovim => editor_neovim}/tasks/install.yml | 0 .../{editors/neovim => editor_neovim}/tasks/main.yml | 0 .../files/code-url-handler.desktop | 0 .../vscode => editor_vscode}/files/code.desktop | 0 .../vscode => editor_vscode}/files/keybindings.json | 0 .../vscode => editor_vscode}/files/settings.json | 0 .../vscode => editor_vscode}/files/update.sh | 0 .../{editors/vscode => editor_vscode}/tasks/main.yml | 0 22 files changed, 7 insertions(+), 5 deletions(-) rename roles/{editors/emacs => editor_emacs}/tasks/install.yml (100%) rename roles/{editors/emacs => editor_emacs}/tasks/main.yml (100%) rename roles/{editors/helix => editor_helix}/files/config.toml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_AlmaLinux.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_Archlinux.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_CentOS.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_Debian.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_Fedora.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_Ubuntu.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_fedora-family.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_generic.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/install_openSUSE Tumbleweed.yml (100%) rename roles/{editors/helix => editor_helix}/tasks/main.yml (100%) rename roles/{editors/neovim => editor_neovim}/tasks/install.yml (100%) rename roles/{editors/neovim => editor_neovim}/tasks/main.yml (100%) rename roles/{editors/vscode => editor_vscode}/files/code-url-handler.desktop (100%) rename roles/{editors/vscode => editor_vscode}/files/code.desktop (100%) rename roles/{editors/vscode => editor_vscode}/files/keybindings.json (100%) rename roles/{editors/vscode => editor_vscode}/files/settings.json (100%) rename roles/{editors/vscode => editor_vscode}/files/update.sh (100%) rename roles/{editors/vscode => editor_vscode}/tasks/main.yml (100%) 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