fix(race): log initial countdown on start

This commit is contained in:
Barrett Ruth 2026-03-06 23:58:59 -05:00
parent 926ca587b8
commit 39d73545a6

21
t/minimal_init.lua Normal file
View 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' },
}