diff options
-rw-r--r-- | lua/config.lua | 2 | ||||
-rw-r--r-- | lua/style.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/config.lua b/lua/config.lua index 72cdfd7..373bbad 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -20,7 +20,7 @@ vim.o.cmdheight = 2 vim.o.errorbells = false vim.o.scrolloff = 8 vim.o.encoding = "UTF-8" -vim.o.fillchars = vim.o.fillchars .. "vert:█" +vim.o.fillchars = vim.o.fillchars .. "vert:│" vim.o.colorcolumn = "90" vim.o.signcolumn = "yes" diff --git a/lua/style.lua b/lua/style.lua index 8942157..35ca00d 100644 --- a/lua/style.lua +++ b/lua/style.lua @@ -4,7 +4,7 @@ ayu_colors.generate() -- Pass `true` to enable mirage require('ayu').setup({ overrides = { - WinSeparator = { fg = ayu_colors.bg, bg = ayu_colors.bg }, + WinSeparator = { fg = ayu_colors.comment, bg = ayu_colors.bg }, LineNrAbove = { fg = ayu_colors.comment }, LineNrBelow = { fg = ayu_colors.comment }, LineNr = { fg = ayu_colors.accent }, |