From 86019fedab4bc36451a9232d786c66a7b3521c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 23 Dec 2023 02:00:54 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20config(nvim):=20add=20opti?= =?UTF-8?q?on=20to=20the=20init=20function=20in=20fold=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/ui/fold.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/ui/fold.lua b/.config/nvim/lua/plugins/extras/ui/fold.lua index 4fb860f5..af1c521d 100644 --- a/.config/nvim/lua/plugins/extras/ui/fold.lua +++ b/.config/nvim/lua/plugins/extras/ui/fold.lua @@ -1,7 +1,6 @@ return { { "lewis6991/gitsigns.nvim", - optional = true, opts = { signs = { add = { text = "┃" }, @@ -17,7 +16,6 @@ return { }, { "neovim/nvim-lspconfig", - optional = true, init = function() local keys = require("lazyvim.plugins.lsp.keymaps").get() keys[#keys + 1] = { "K", false } @@ -54,6 +52,7 @@ return { vim.o.foldlevel = 99 vim.o.foldlevelstart = 99 vim.o.foldenable = true + vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]] end, opts = function() local handler = function(virtText, lnum, endLnum, width, truncate)