URI:
       nvim: lualine: add more colorschemes - dotfiles - 🍚 personal arsenal of "rice"
  HTML git clone https://git.drkhsh.at/dotfiles.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 1d259efba7ea346ec8c2e8763c8269ec0d7fb289
   DIR parent 865204f5cee6f31bed92b1666159f325d0a6743b
  HTML Author: drkhsh <me@drkhsh.at>
       Date:   Sun,  8 Sep 2024 01:43:02 +0200
       
       nvim: lualine: add more colorschemes
       
       Diffstat:
         M vim/.config/nvim/lua/plugins/luali… |      36 +++++++++++++++++++++++++++++--
       
       1 file changed, 34 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/vim/.config/nvim/lua/plugins/lualine.lua b/vim/.config/nvim/lua/plugins/lualine.lua
       @@ -7,8 +7,40 @@ return {
                        vim.opt.laststatus = 0
                end,
                opts = function()
       +                local miasma_colors = {
       +                        bg = "#222222",
       +                        black = "#222222",
       +                        magenta = "#bb7744",
       +                        green = "#222222",
       +                        lost = "#666666",
       +                        unit01 = "#bb7744",
       +                        selee = "#5f875f",
       +                        mint = "#C9A554",
       +                        hazard = "#B36D43",
       +                        purple = "#bb7744",
       +                        lcl = "#5f875f",
       +                        nerv = "#78824b",
       +                        rei = "#222222",
       +                        blood = "#685742",
       +                }
       +                local gruvbox_colors = {
       +                        bg = "#282828",
       +                        black = "#000000",
       +                        magenta = "#9d0006",
       +                        green = "#b8bb26",
       +                        lost = "#665c54",
       +                        unit01 = "#8f3f71",
       +                        selee = "#b16286",
       +                        mint = "#427b58",
       +                        hazard = "#fe8019",
       +                        purple = "#d3869b",
       +                        lcl = "#504945",
       +                        nerv = "#cc241d",
       +                        rei = "#32302f",
       +                        blood = "#fb4934",
       +                }
                        -- evangelion colors
       -                local colors = {
       +                local evangelion_colors = {
                                bg = "#201430",
                                black = "#000000",
                                magenta = "#483160",
       @@ -23,6 +55,7 @@ return {
                                nerv = "#bf2d2d",
                                rei = "#e1d6f8",
                        }
       +                local colors = evangelion_colors
        
                        local conditions = {
                                buffer_not_empty = function()
       @@ -277,7 +310,6 @@ return {
                                icons_enabled = false,
                                cond = conditions.hide_in_width,
                                color = { bg = colors.selee, fg = colors.black },
       -                        separator = { right = "▓▒░" },
                                padding = { left = 0, right = 1 },
                        })