From 9ce00b70fa9cd0185ba63e6a52670346032d6e24 Mon Sep 17 00:00:00 2001 From: Kutsan Kaplan Date: Tue, 9 Apr 2024 19:22:50 +0300 Subject: [PATCH] refactor(nvim): disable 'foldtext' to show highlighted code --- .config/nvim/plugin/settings.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/plugin/settings.lua b/.config/nvim/plugin/settings.lua index baaa5a2d..e295c90c 100644 --- a/.config/nvim/plugin/settings.lua +++ b/.config/nvim/plugin/settings.lua @@ -84,6 +84,7 @@ opt.foldopen = { -- Specifies for which type of commands folds will be opened. 'tag', -- Jumping to a tag: ":ta", CTRL-T, etc. 'undo', -- Undo or redo: "u" and CTRL-R. } +opt.foldtext = '' -- Disable fold text. opt.grepprg = 'grep ' -- Program to use for the :grep command. .. '--line-number ' .. '--binary-file="without-match" '