summary refs log tree commit diff
path: root/.vim/plugin/undo.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/plugin/undo.lua')
-rw-r--r--.vim/plugin/undo.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/.vim/plugin/undo.lua b/.vim/plugin/undo.lua
deleted file mode 100644
index aed6195..0000000
--- a/.vim/plugin/undo.lua
+++ /dev/null
@@ -1,10 +0,0 @@
--- persistent undo
-
-local undodir = vim.fn.stdpath('cache') .. '/undodir'
-
-if vim.fn.isdirectory(undodir) == 0 then
-  vim.fn.mkdir(undodir, 'p', '0700')
-end
-
-vim.g.undodir = undodir
-vim.opt.undofile = true