enable persistant undo history

This commit is contained in:
Ray Elliott 2026-01-06 17:59:01 +00:00
commit bc9758dbe1
3 changed files with 6 additions and 0 deletions

View file

@ -49,6 +49,10 @@ vim.opt.shiftwidth = 4 -- Indent by 4
vim.opt.softtabstop = 4 -- Backspace removes 4 spaces
vim.opt.expandtab = true -- Use spaces by default (overridden per-filetype)
-- Persistent undo
vim.opt.undofile = true -- Enable persistent undo
vim.opt.undodir = vim.fn.stdpath("config") .. "/undodir" -- Store undo files in config directory
-- LSP diagnostics configuration
vim.diagnostic.config({
virtual_text = {