diff --git a/t/minimal_init.lua b/t/minimal_init.lua deleted file mode 100644 index 1f56d27..0000000 --- a/t/minimal_init.lua +++ /dev/null @@ -1,21 +0,0 @@ -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' }, -}