fix: remove misc files

This commit is contained in:
Barrett Ruth 2026-03-06 23:59:47 -05:00
parent 8f55dbeb33
commit 472898a5b1
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -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' },
}