Refactored home and hardware files, and added new plugins to neovim.

This commit is contained in:
2025-08-24 11:38:11 -04:00
parent 1564a9f1ec
commit 761525421d
29 changed files with 180 additions and 90 deletions

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,
})