From bbb59134634da61d78a46632725561001fb66ad2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 22 Mar 2025 23:25:36 +0000 Subject: [PATCH] Enable exrc This allows for automatically loading an `.nvim.lua` file when starting Neovim that contains project-specific configuration. --- nvim/lua/opdavies/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/lua/opdavies/options.lua b/nvim/lua/opdavies/options.lua index 5b94dff2..81910593 100644 --- a/nvim/lua/opdavies/options.lua +++ b/nvim/lua/opdavies/options.lua @@ -6,6 +6,7 @@ local settings = { backup = false, breakindent = true, expandtab = true, + exrc = true, foldlevel = 1, foldlevelstart = 99, foldmethod = "indent",