dev-setup: Install hack font (used in vscode settings)
This commit is contained in:
parent
894539c5c8
commit
92220b88d9
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue