fixed up my todo app to be even more robust + aliases for todo

This commit is contained in:
2025-04-30 14:19:18 -07:00
parent 005589be05
commit ba2b5e286c
3 changed files with 324 additions and 144 deletions

View File

@@ -6,3 +6,12 @@ vim.o.clipboard = "unnamedplus"
vim.cmd [[highlight Normal guibg=NONE ctermbg=NONE]]
vim.cmd [[highlight NormalNC guibg=NONE ctermbg=NONE]]
vim.cmd [[highlight EndOfBuffer guibg=NONE ctermbg=NONE]]
vim.api.nvim_create_autocmd("BufRead", {
pattern = "*",
callback = function()
if vim.fn.getline(1):match("^#!.*/python") then
vim.bo.filetype = "python"
end
end
})