Added VSCodium

This commit is contained in:
Jan Beilicke 2020-11-28 20:13:32 +00:00
parent 91846db7af
commit b0333049d5

View file

@ -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