Compare commits
2 Commits
c2ae5fbf3d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b65c3ff8e | |||
| a999be76f2 |
@@ -42,6 +42,7 @@ return {
|
||||
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
|
||||
wrap = false, -- sets vim.opt.wrap
|
||||
expandtab = false,
|
||||
cursorline = false,
|
||||
tabstop = 8,
|
||||
shiftwidth = 8,
|
||||
showtabline = 8,
|
||||
|
||||
@@ -21,8 +21,8 @@ return {
|
||||
evaluate_template_modifiers = true,
|
||||
received_problems_prompt_path = false,
|
||||
compile_command = {
|
||||
c = { exec = "gcc", args = { "-O0", "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c23", "$(FNAME)", "-o", "$(FNOEXT).out", "-lm" } },
|
||||
cpp = { exec = "g++", args = { "-O0", "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++20", "$(FNAME)", "-o", "$(FNOEXT).out" } },
|
||||
c = { exec = "gcc", args = { "-O0", "-Wall", "-ggdb3", "-DDEBUG", "-fsanitize=address,undefined", "$(FNAME)", "-o", "$(FNOEXT).out", "-lm" } },
|
||||
cpp = { exec = "g++", args = { "-O0", "-Wall", "-ggdb3", "-DDEBUG", "-fsanitize=address,undefined", "-D__OPTIMIZE__", "$(FNAME)", "-o", "$(FNOEXT).out" } },
|
||||
},
|
||||
run_command = {
|
||||
c = { exec = "./$(FNOEXT).out" },
|
||||
|
||||
4
lua/plugins/render-markdown.lua
Normal file
4
lua/plugins/render-markdown.lua
Normal file
@@ -0,0 +1,4 @@
|
||||
return {
|
||||
"MeanderingProgrammer/render-markdown.nvim",
|
||||
lazy = false
|
||||
}
|
||||
Reference in New Issue
Block a user