From 6a3410e1c34ec66b79b85154a27f84f8d7719ac8 Mon Sep 17 00:00:00 2001 From: Graham McMillan <30657475+gmcmillan82@users.noreply.github.com> Date: Sun, 16 Jun 2024 12:51:35 +0200 Subject: [PATCH] Update vim opts --- init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5fcfa7a7..3f9b2e2b 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = false +vim.g.have_nerd_font = true -- [[ Setting options ]] -- See `:help vim.opt` @@ -154,6 +154,9 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +-- Disable swapfile +vim.opt.swapfile = false + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`