Iniital upload

Removing from my nixos config to add congruency with all nvim installs
This commit is contained in:
2025-08-29 00:40:20 -04:00
commit 1c21e3552b
15 changed files with 1121 additions and 0 deletions

9
lua/autocmds.lua Normal file
View File

@@ -0,0 +1,9 @@
local vim = vim
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost" }, {
group = vim.api.nvim_create_augroup("TWTask", { clear = true }),
pattern = "*.wiki", -- Pattern to match Markdown files
callback = function()
vim.cmd('TWSyncTasks')
end,
})