From d43b21aba063cdb4322cf8dae9042eb82e361241 Mon Sep 17 00:00:00 2001 From: gered Date: Fri, 3 Jan 2025 21:48:29 -0500 Subject: [PATCH] neovim theme config adjustment for better visibility --- nvim/lua/plugins/theme.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua index 4cd7305..b50dcc7 100644 --- a/nvim/lua/plugins/theme.lua +++ b/nvim/lua/plugins/theme.lua @@ -12,6 +12,17 @@ return { }, init = function() vim.cmd.colorscheme 'tokyonight' + + -- makes some borders a lot easier to see with this theme's colours + vim.opt.fillchars = { + horiz = '━', + horizup = '┻', + horizdown = '┳', + vert = '┃', + vertleft = '┫', + vertright = '┣', + verthoriz = '╋', + } end, }, -- {