You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
840 B

- name: Install System Packages 1 (build-essential, cmake, pkg-config, pthread)
become: true
apt:
name: ["build-essential", "cmake", "pkg-config", "libpthread-stubs0-dev"]
tags:
- install
- neovim
- core
- name: Install System Packages 2 (lua, unzip, libtool, libtool-bin, gettext)
become: true
apt:
name: [ "lua5.1", "unzip", "libtool", "libtool-bin", "gettext"]
tags:
- install
- neovim
- core
- name: Install System Packages 3 (ccache, python3-pip, dconf-editor, moreutils)
become: true
apt:
name: [ "ccache", "python3-pip", "dconf-editor", "moreutils"]
tags:
- install
- core
- name: Install Clang
become: true
apt:
name: ["clang", "clang-11", "clang-12", "clang-15", "clangd", "clangd-11", "clangd-12", "clangd-15"]
tags:
- install
- neovim
- core