From 66ee299f3109e221025198219b76ba4e77c6fa7e Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Sun, 16 Mar 2025 23:49:35 +0000 Subject: [PATCH] Changed config for competitest --- config/competitest.nix | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/config/competitest.nix b/config/competitest.nix index 0de896b..04ff0d6 100644 --- a/config/competitest.nix +++ b/config/competitest.nix @@ -1 +1,27 @@ -{ plugins = { competitest = { enable = true; }; }; } +{ + plugins = { + competitest = { + enable = true; + settings = { + compile_command = { + cpp = { + exec = "g++"; + args = [ + "-Wall" + "$(FNAME)" + "-o" + "$(FNOEXT)" + "-g" + "-Wextra" + "-Wshadow" + "-Wconversion" + "-Wfloat-equal" + "-Wduplicated-cond" + "-Wlogical-op" + ]; + }; + }; + }; + }; + }; +}