summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/options.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-11 21:00:10 -0400
committertriethyl <triethylammonium@pm.me>2025-08-11 21:00:10 -0400
commit86723a395d8ff81760529a4e804aca1ae6a63cfe (patch)
tree3c558349b1d44fda456715200b09c85a2a8d81bc /pkgs/custom-neovim/config/lua/options.lua
parent04d818b753f86aec987e7e1c00ab0127de2c08f2 (diff)
neovim: added mini icons
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/options.lua11
1 files changed, 11 insertions, 0 deletions
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 = '╋',
+}