diff options
author | amelia squires <[email protected]> | 2024-12-02 15:00:06 -0600 |
---|---|---|
committer | amelia squires <[email protected]> | 2024-12-02 15:00:06 -0600 |
commit | 27bdad73f556e309ef7426d8c2f875088b9772a9 (patch) | |
tree | c878cd074267b6789d28e0a6d5526affe0d95c2a /lua | |
parent | f343b6021c3fd58bde0bad35e75fb16451990ba1 (diff) |
lots of stuff + work on settings ui
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lua/lualine.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lua/lualine.lua b/lua/lua/lualine.lua index db17d97..5737895 100644 --- a/lua/lua/lualine.lua +++ b/lua/lua/lualine.lua @@ -19,6 +19,10 @@ local colors = { red = '#ec5f67', } +if _G.settings.trans == "enable" then + colors.bg = "none" +end + local conditions = { buffer_not_empty = function() return vim.fn.empty(vim.fn.expand('%:t')) ~= 1 |