diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-15 20:54:41 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-15 20:54:41 +0200 |
commit | 25319c7f838598679029193a3b2f9f6d28655f1a (patch) | |
tree | 9137bc8671a24b09f903320742d64d679dca90e9 /.config/nvim/lua/_galaxyline/init.lua | |
parent | e007f92cd76c82bfdf4f7058f516edc425aebab2 (diff) |
updates to nvim
Diffstat (limited to '.config/nvim/lua/_galaxyline/init.lua')
-rw-r--r-- | .config/nvim/lua/_galaxyline/init.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/nvim/lua/_galaxyline/init.lua b/.config/nvim/lua/_galaxyline/init.lua index e34c606..8673cde 100644 --- a/.config/nvim/lua/_galaxyline/init.lua +++ b/.config/nvim/lua/_galaxyline/init.lua @@ -105,15 +105,15 @@ gls.left[6] = { } gls.right[1] = { - DiagnosticError = {provider = 'DiagnosticError', icon = ' ', highlight = {colors.error_red, colors.bg}} + DiagnosticError = {provider = 'DiagnosticError', icon = ' ', highlight = {colors.error_red, colors.bg}} } -gls.right[2] = {DiagnosticWarn = {provider = 'DiagnosticWarn', icon = ' ', highlight = {colors.orange, colors.bg}}} +gls.right[2] = {DiagnosticWarn = {provider = 'DiagnosticWarn', icon = ' ', highlight = {colors.orange, colors.bg}}} gls.right[3] = { - DiagnosticHint = {provider = 'DiagnosticHint', icon = ' ', highlight = {colors.vivid_blue, colors.bg}} + DiagnosticHint = {provider = 'DiagnosticHint', icon = ' ', highlight = {colors.vivid_blue, colors.bg}} } -gls.right[4] = {DiagnosticInfo = {provider = 'DiagnosticInfo', icon = ' ', highlight = {colors.info_yellow, colors.bg}}} +gls.right[4] = {DiagnosticInfo = {provider = 'DiagnosticInfo', icon = ' ', highlight = {colors.info_yellow, colors.bg}}} gls.right[5] = { ShowLspClient = { @@ -123,7 +123,7 @@ gls.right[5] = { if tbl[vim.bo.filetype] then return false end return true end, - icon = ' ', + icon = ' ', highlight = {colors.grey, colors.bg} } } |