summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/lvim/core/lualine/styles.lua25
-rw-r--r--lua/lvim/core/theme.lua28
2 files changed, 47 insertions, 6 deletions
diff --git a/lua/lvim/core/lualine/styles.lua b/lua/lvim/core/lualine/styles.lua
index 7e576855..57bd7260 100644
--- a/lua/lvim/core/lualine/styles.lua
+++ b/lua/lvim/core/lualine/styles.lua
@@ -71,6 +71,7 @@ styles.lvim = {
style = "lvim",
options = {
theme = "auto",
+ globalstatus = true,
icons_enabled = lvim.use_icons,
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
@@ -100,13 +101,25 @@ styles.lvim = {
},
inactive_sections = {
lualine_a = {
- "filename",
+ components.mode,
+ },
+ lualine_b = {
+ components.branch,
+ },
+ lualine_c = {
+ components.diff,
+ components.python_env,
+ },
+ lualine_x = {
+ components.diagnostics,
+ components.lsp,
+ components.spaces,
+ components.filetype,
+ },
+ lualine_y = { components.location },
+ lualine_z = {
+ components.progress,
},
- lualine_b = {},
- lualine_c = {},
- lualine_x = {},
- lualine_y = {},
- lualine_z = {},
},
tabline = {},
extensions = { "nvim-tree" },
diff --git a/lua/lvim/core/theme.lua b/lua/lvim/core/theme.lua
index 886045c9..b1fce081 100644
--- a/lua/lvim/core/theme.lua
+++ b/lua/lvim/core/theme.lua
@@ -8,6 +8,34 @@ M.config = function()
hl.IndentBlanklineContextChar = {
fg = c.dark5,
}
+ local prompt = "#2d3149"
+ -- hl.TelescopeNormal = {
+ -- bg = c.bg_dark,
+ -- fg = c.fg_dark,
+ -- }
+ -- hl.TelescopeBorder = {
+ -- bg = c.bg_dark,
+ -- fg = c.bg_dark,
+ -- }
+ -- hl.TelescopePromptNormal = {
+ -- bg = prompt,
+ -- }
+ -- hl.TelescopePromptBorder = {
+ -- bg = prompt,
+ -- fg = prompt,
+ -- }
+ -- hl.TelescopePromptTitle = {
+ -- bg = prompt,
+ -- fg = prompt,
+ -- }
+ -- hl.TelescopePreviewTitle = {
+ -- bg = c.bg_dark,
+ -- fg = c.bg_dark,
+ -- }
+ -- hl.TelescopeResultsTitle = {
+ -- bg = c.bg_dark,
+ -- fg = c.bg_dark,
+ -- }
end,
style = "night", -- The theme comes in three styles, `storm`, a darker variant `night` and `day`
transparent = lvim.transparent_window, -- Enable this to disable setting the background color