initial commit

This commit is contained in:
Barrett Ruth 2025-09-11 23:52:32 -05:00
commit dcb7debff6
29 changed files with 1276 additions and 0 deletions

13
after/ftdetect/cp.lua Normal file
View file

@ -0,0 +1,13 @@
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
pattern = '*/io/*.in',
callback = function()
vim.bo.filetype = 'cpinput'
end,
})
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
pattern = '*/io/*.out',
callback = function()
vim.bo.filetype = 'cpoutput'
end,
})