From 86723a395d8ff81760529a4e804aca1ae6a63cfe Mon Sep 17 00:00:00 2001 From: triethyl Date: Mon, 11 Aug 2025 21:00:10 -0400 Subject: neovim: added mini icons --- pkgs/custom-neovim/config/lua/options.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'pkgs/custom-neovim/config/lua/options.lua') diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua index 844341e..2e273cc 100644 --- a/pkgs/custom-neovim/config/lua/options.lua +++ b/pkgs/custom-neovim/config/lua/options.lua @@ -45,3 +45,14 @@ vim.o.foldexpr = "v:lua.vim.treesitter.foldexpr()" -- Set folder to treesitter. vim.o.foldlevel = 99 -- Don't fold initially. vim.o.foldnestmax = 4 -- Don't fold if more than 4 folds deep. vim.o.foldtext = "" -- Color text in folds. + +-- Thick window borders. +vim.opt.fillchars = { + horiz = '━', + horizup = '┻', + horizdown = '┳', + vert = '┃', + vertleft = '┫', + vertright = '┣', + verthoriz = '╋', +} -- cgit v1.2.3