From 26a3b7ebd91a04ef078ec1960b92c8178f2aa241 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sun, 29 May 2022 10:24:55 -0400 Subject: [PATCH] Enabled backup files. --- lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/user/options.lua b/lua/user/options.lua index f382e4b..040839c 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -1,5 +1,5 @@ -- :help options -vim.opt.backup = false -- creates a backup file +vim.opt.backup = true -- Creates a backup file, before edits are written. vim.opt.clipboard = "unnamedplus" -- allows neovim to access the system clipboard vim.opt.cmdheight = 2 -- more space in the neovim command line for displaying messages vim.opt.completeopt = { "menuone", "noselect" } -- mostly just for cmp