Compare commits

..

2 Commits

Author SHA1 Message Date
0b65c3ff8e Change some things 2026-02-16 18:04:21 -03:00
a999be76f2 Fix competitest so that sanitizers works again 2026-01-10 20:36:38 -03:00
3 changed files with 7 additions and 2 deletions

View File

@@ -42,6 +42,7 @@ return {
signcolumn = "auto", -- sets vim.opt.signcolumn to auto signcolumn = "auto", -- sets vim.opt.signcolumn to auto
wrap = false, -- sets vim.opt.wrap wrap = false, -- sets vim.opt.wrap
expandtab = false, expandtab = false,
cursorline = false,
tabstop = 8, tabstop = 8,
shiftwidth = 8, shiftwidth = 8,
showtabline = 8, showtabline = 8,

View File

@@ -21,8 +21,8 @@ return {
evaluate_template_modifiers = true, evaluate_template_modifiers = true,
received_problems_prompt_path = false, received_problems_prompt_path = false,
compile_command = { compile_command = {
c = { exec = "gcc", args = { "-O0", "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c23", "$(FNAME)", "-o", "$(FNOEXT).out", "-lm" } }, c = { exec = "gcc", args = { "-O0", "-Wall", "-ggdb3", "-DDEBUG", "-fsanitize=address,undefined", "$(FNAME)", "-o", "$(FNOEXT).out", "-lm" } },
cpp = { exec = "g++", args = { "-O0", "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++20", "$(FNAME)", "-o", "$(FNOEXT).out" } }, cpp = { exec = "g++", args = { "-O0", "-Wall", "-ggdb3", "-DDEBUG", "-fsanitize=address,undefined", "-D__OPTIMIZE__", "$(FNAME)", "-o", "$(FNOEXT).out" } },
}, },
run_command = { run_command = {
c = { exec = "./$(FNOEXT).out" }, c = { exec = "./$(FNOEXT).out" },

View File

@@ -0,0 +1,4 @@
return {
"MeanderingProgrammer/render-markdown.nvim",
lazy = false
}