Added VSCodium
This commit is contained in:
parent
91846db7af
commit
b0333049d5
1 changed files with 17 additions and 1 deletions
|
@ -11,6 +11,16 @@
|
|||
repo: deb https://download.sublimetext.com/ apt/stable/
|
||||
state: present
|
||||
|
||||
- name: Add key for VSCodium repo
|
||||
apt_key:
|
||||
url: https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
|
||||
state: present
|
||||
|
||||
- name: Add repository for VSCodium
|
||||
apt_repository:
|
||||
repo: deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main
|
||||
state: present
|
||||
|
||||
- name: Update apt cache
|
||||
apt:
|
||||
update_cache: yes
|
||||
|
@ -20,4 +30,10 @@
|
|||
apt:
|
||||
pkg:
|
||||
- sublime-text
|
||||
register: sublime_text_installed
|
||||
register: sublime_text_installed
|
||||
|
||||
- name: Install VSCodium
|
||||
apt:
|
||||
pkg:
|
||||
- codium
|
||||
register: vscodium_installed
|
||||
|
|
Loading…
Add table
Reference in a new issue