Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 28 additions & 7 deletions roles/common/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,34 @@
- name: Add gh zsh completion
shell: gh completion -s zsh > /usr/local/share/zsh/site-functions/_gh

- name: Install Claude Code
become: true
block:
- name: Download Claude Code ASC Key
get_url:
url: https://downloads.claude.ai/keys/claude-code.asc
dest: /etc/apt/keyrings/claude-code.asc
mode: '0644'
- name: Add Claude Code repository
deb822_repository:
name: claude-code
types: deb
uris: https://downloads.claude.ai/claude-code/apt/stable
suites: stable
components: main
signed_by: /etc/apt/keyrings/claude-code.asc
- name: Install Claude Code
apt:
name: claude-code
update_cache: yes
state: present

- name: Install Copilot
become: true
community.general.npm:
name: '@github/copilot-language-server'
global: true

- name: Setup configs
block:
- name: Create symbolic link for bashrc
Expand Down Expand Up @@ -366,10 +394,6 @@
dest: "{{ ansible_env.HOME }}/.zsh-completions"
version: 83f09c461535e2372242c6282b66dbbbef6d508a

- name: Change gnome terminal settings
shell:
cmd: "dbus-launch dconf load /org/gnome/terminal/legacy/profiles:/ < {{ role_path }}/zsh/gnome-terminal-profiles.dconf"

- name: Setup Miniconda
block:
- name: Download Miniconda shell script
Expand All @@ -389,6 +413,3 @@
dest: "{{ ansible_env.HOME }}/.nvm"
depth: 1
version: v0.39.7

- name: Install Claude Code
shell: curl -fsSL https://claude.ai/install.sh | bash
31 changes: 0 additions & 31 deletions roles/common/zsh/gnome-terminal-profiles.dconf

This file was deleted.

Loading