From: Frede Braendstrup Date: Wed, 17 Nov 2021 23:34:44 +0000 (+0100) Subject: sorted sections in lualine theme X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=153a6e70e00afc7cd37c54d3823d758af073e503;p=nvim-plugins%2Fflatwhite.git sorted sections in lualine theme --- diff --git a/lua/lualine/themes/dracula-nvim.lua b/lua/lualine/themes/dracula-nvim.lua index cd462e7..342aeef 100644 --- a/lua/lualine/themes/dracula-nvim.lua +++ b/lua/lualine/themes/dracula-nvim.lua @@ -3,8 +3,8 @@ local dracula = {} local colors = require('dracula').colors() dracula.normal = { - b = {fg = colors.purple, bg = colors.black}, a = {fg = colors.black, bg = colors.purple, gui = 'bold'}, + b = {fg = colors.purple, bg = colors.black}, c = {fg = colors.white, bg = colors.black} } @@ -14,13 +14,13 @@ dracula.visual = { } dracula.inactive = { + a = {fg = colors.white, bg = colors.gray, gui = 'bold'}, b = {fg = colors.black, bg = colors.white}, - a = {fg = colors.white, bg = colors.gray, gui = 'bold'} } dracula.replace = { - b = {fg = colors.yellow, bg = colors.black}, a = {fg = colors.black, bg = colors.yellow, gui = 'bold'}, + b = {fg = colors.yellow, bg = colors.black}, c = {fg = colors.white, bg = colors.black} }