first commit
This commit is contained in:
commit
15e643aa8e
41 changed files with 1623 additions and 0 deletions
12
ftplugin/markdown.lua
Normal file
12
ftplugin/markdown.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue