dev-setup: Install hack font (used in vscode settings)

This commit is contained in:
Jannik Beyerstedt 2020-06-25 13:50:07 +02:00
parent 894539c5c8
commit 92220b88d9
3 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,14 @@
---
# Common/Devel: Install and Configure Dev Env - ArchLinux Version
- name: devel - Fonts
package:
name: "{{ packages }}"
state: present
vars:
packages:
- fonts-hack
# Install Visual Studio Code and Set Basic Configuration
- name: vscode - Basics
block:

View File

@ -1,6 +1,11 @@
---
# Common/Devel: Install and Configure Dev Env - macOS Version
- name: devel - Fonts
homebrew_cask:
name: caskroom/fonts/font-hack
state: present
# Install Visual Studio Code and Set Basic Configuration
- name: vscode - Basics
block:

View File

@ -1,6 +1,12 @@
---
# Common/Devel: Install and Configure Dev Env - Debian Version
- name: devel - Fonts
become: yes
apt:
name: fonts-hack-ttf
state: present
# Install Visual Studio Code and Set Basic Configuration
- name: vscode - Basics
block: