initial commit

This commit is contained in:
Mark Eaton
2025-05-28 16:16:24 -04:00
commit 897bb45853
8 changed files with 88 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
-- txt 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
-- Spell check
vim.opt.spelllang = 'en_us'
vim.opt.spell = true
-- alter up and down arrows for better text navigation
vim.keymap.set("n", "<Down>", "gj")
vim.keymap.set("n", "<Up>", "gk")
vim.cmd(':Copilot disable')