mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2026-01-03 05:48:16 +00:00
clojure, vscode version update, fixes
This commit is contained in:
parent
2379badd14
commit
8621bb0a20
7 changed files with 118 additions and 14 deletions
|
|
@ -17,19 +17,26 @@
|
|||
- name: Installing vscode (uncoded)
|
||||
# become: true
|
||||
ansible.builtin.get_url:
|
||||
url: "https://tilde.club/~megastallman/uncoded/code-oss-1754477678_amd64.AppImage"
|
||||
dest: "{{ ansible_env.HOME }}/.bin/code"
|
||||
url: "https://tilde.club/~megastallman/uncoded/code-oss-1760024969_amd64.AppImage"
|
||||
dest: "{{ bin_install_path }}/code"
|
||||
mode: a+x
|
||||
force: false
|
||||
|
||||
- name: Creating vscode extensions dir
|
||||
ansible.builtin.file:
|
||||
path: "{{ ansible_env.HOME }}/.vscode_ext"
|
||||
state: directory
|
||||
mode: a
|
||||
|
||||
- name: Downloading vscode helix extension
|
||||
ansible.builtin.get_url:
|
||||
url: "https://open-vsx.org/api/jasew/vscode-helix-emulation/0.6.2/file/jasew.vscode-helix-emulation-0.6.2.vsix"
|
||||
dest: "{{ ansible_env.HOME }}/.vscode_ext/vscode-helix-emulation.vsi"
|
||||
dest: "{{ ansible_env.HOME }}/.vscode_ext/vscode-helix-emulation.vsix"
|
||||
mode: a
|
||||
force: false
|
||||
|
||||
- name: "Installing vscode helix extension"
|
||||
ansible.builtin.command:
|
||||
cmd: "{{ ansible_env.HOME }}/.bin/code --install-extension {{ ansible_env.HOME }}/.vscode_ext/vscode-helix-emulation.vsi"
|
||||
changed_when: false
|
||||
# TODO: does not work
|
||||
# - name: "Installing vscode helix extension"
|
||||
# ansible.builtin.command:
|
||||
# cmd: "{{ ansible_env.HOME }}/.bin/code --install-extension {{ ansible_env.HOME }}/.vscode_ext/vscode-helix-emulation.vsix"
|
||||
# changed_when: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue