first commit

This commit is contained in:
Blake Ridgway 2024-12-24 23:01:45 -06:00
commit 15e643aa8e
41 changed files with 1623 additions and 0 deletions

12
ftplugin/markdown.lua Normal file
View file

@ -0,0 +1,12 @@
-- Markdown specific settings
vim.opt.wrap = true -- Wrap text
vim.opt.breakindent = true -- Match indent on line break
vim.opt.linebreak = true -- Line break on whole words
-- Allow j/k when navigating wrapped lines
vim.keymap.set("n", "j", "gj")
vim.keymap.set("n", "k", "gk")
-- Spell check
vim.opt.spelllang = 'en_us'
vim.opt.spell = true