From 811d1df4b9ff38b105f8b4f1a3a823c03be0a377 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 21 Jul 2025 17:43:43 +0200 Subject: [PATCH] disable swapfiles - they are just annoying --- lua/core/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/core/options.lua b/lua/core/options.lua index 07bc960..a0863a6 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -7,6 +7,7 @@ vim.schedule(function() vim.opt.clipboard = 'unnamedplus' end) vim.opt.breakindent = true vim.opt.undofile = true +vim.opt.swapfile = false vim.opt.ignorecase = true vim.opt.smartcase = true