From 40e80abf922a46d4e9115afdb128bd5d173ef867 Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Thu, 16 Oct 2025 20:29:34 -0600 Subject: [PATCH] set a default of 4 for make jobs in neovim --- tasks/src/neovim.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/src/neovim.yml b/tasks/src/neovim.yml index 16d8e22..f56f6b4 100644 --- a/tasks/src/neovim.yml +++ b/tasks/src/neovim.yml @@ -38,4 +38,4 @@ CMAKE_BUILD_TYPE: "{{ neovim.build_type }}" CMAKE_EXTRA_FLAGS: "-DCMAKE_INSTALL_PREFIX={{ path.prefix }}" target: install - jobs: "{{ ansible_processor_nproc | int }}" + jobs: "{{ ansible_processor_nproc | int | default(4) }}"