fix(race): log initial countdown on start
This commit is contained in:
parent
926ca587b8
commit
39d73545a6
1 changed files with 21 additions and 0 deletions
21
t/minimal_init.lua
Normal file
21
t/minimal_init.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
vim.opt.runtimepath:prepend(vim.fn.expand('~/dev/cp.nvim'))
|
||||
vim.opt.runtimepath:prepend(vim.fn.expand('~/dev/fzf-lua'))
|
||||
|
||||
vim.g.cp = {
|
||||
languages = {
|
||||
cpp = {
|
||||
extension = 'cc',
|
||||
commands = {
|
||||
build = { 'g++', '-std=c++23', '-O2', '{source}', '-o', '{binary}' },
|
||||
run = { '{binary}' },
|
||||
},
|
||||
},
|
||||
},
|
||||
platforms = {
|
||||
codechef = {
|
||||
enabled_languages = { 'cpp' },
|
||||
default_language = 'cpp',
|
||||
},
|
||||
},
|
||||
ui = { picker = 'fzf-lua' },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue