From 33c1e495829608e4f7a89e1634af9e4e2f0f4ebb Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Thu, 11 Nov 2021 00:11:50 -0500 Subject: [PATCH] Semi-fix cokeline config until i can be bothered to bother upstream --- lua/plugins.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 2b20ccf..0196af6 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -54,11 +54,11 @@ require('cokeline').setup({ default_hl = { focused = { fg = get_hex('Normal', 'fg'), - bg = get_hex('ColorColumn', 'bg'), + bg = get_hex('Background', 'bg'), }, unfocused = { fg = get_hex('Comment', 'fg'), - bg = get_hex('ColorColumn', 'bg'), + bg = get_hex('Background', 'bg'), }, }, @@ -78,7 +78,6 @@ require('cokeline').setup({ { text = function(buffer) return buffer.unique_prefix end, hl = { - fg = get_hex('Comment', 'fg'), style = 'italic', }, }, @@ -91,6 +90,6 @@ require('cokeline').setup({ }, { text = ' ', - } + }, }, })