From 196ade61ea80f3a7ac2386187fe7ae4f23eae481 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 18 May 2023 02:25:36 -0500 Subject: [PATCH] feat(nvim): enable project specific settings --- dots/.config/nvim/lua/core/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dots/.config/nvim/lua/core/options.lua b/dots/.config/nvim/lua/core/options.lua index 8bdbac87..10ff72e4 100755 --- a/dots/.config/nvim/lua/core/options.lua +++ b/dots/.config/nvim/lua/core/options.lua @@ -132,6 +132,9 @@ M.setup = function() -- Limit default menu height for completions opt.pumheight = 30 + + -- Allow per project configuration via exrc + opt.exrc = true end return M