From d9ec016196d51f18c1e5cbb7dc616b52ac833148 Mon Sep 17 00:00:00 2001 From: Charles D Date: Mon, 12 Jun 2023 07:13:50 -0400 Subject: [PATCH] change undodir location to something more sensible --- .config/nvim/lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/core/options.lua b/.config/nvim/lua/core/options.lua index 2785669..0c1b2cc 100644 --- a/.config/nvim/lua/core/options.lua +++ b/.config/nvim/lua/core/options.lua @@ -40,5 +40,5 @@ opt.splitright = true opt.splitbelow = true -- save me -opt.undodir = os.getenv("HOME") .. "/.vim/undodir" +opt.undodir = os.getenv("HOME") .. "/.config/nvim/undodir" opt.undofile = true