From 8ac60b41967f8f735753c60c9789a3d3147f5937 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Fri, 22 Nov 2024 12:43:29 -0500 Subject: [PATCH] feat: Adds note about keeping nvim settings at top of init.lua --- nvim/m-housh/init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/m-housh/init.lua b/nvim/m-housh/init.lua index 94c6497..06e91c3 100755 --- a/nvim/m-housh/init.lua +++ b/nvim/m-housh/init.lua @@ -2,6 +2,10 @@ vim.g.mapleader = " " vim.g.maplocalleader = " " +-- NOTE: Keep settings at the top, otherwise some options don't work well. +-- mainly have had trouble with not using the settings in an `.editorconfig` +-- file for projects. + -- Common settings require("user.settings")