chore: update telekasten config

add helper commands for additional note creation (review templates)
fix markdown wrap
re-enable note link commands
This commit is contained in:
2026-05-09 21:56:42 -04:00
parent c7ee19c756
commit c63484d087
3 changed files with 104 additions and 23 deletions
+6 -3
View File
@@ -4,9 +4,12 @@ local o = vim.opt_local
-- ──────────────────[ set options for markdown files ]───────────────
autocmd('FileType', {
pattern = 'markdown',
pattern = { 'markdown', 'telekasten' },
callback = function()
-- o.colorcolumn = '+1,+2'
o.colorcolumn = '81'
o.wrap = true
o.linebreak = true
o.breakindent = true
o.textwidth = 80
o.spell = true
end,
@@ -32,4 +35,4 @@ autocmd('TextYankPost', {
callback = function()
vim.highlight.on_yank({ higroup = 'IncSearch', timeout = '800' })
end,
})
})