summaryrefslogtreecommitdiff
path: root/lua/lvim/core/lualine/styles.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lvim/core/lualine/styles.lua')
-rw-r--r--lua/lvim/core/lualine/styles.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lvim/core/lualine/styles.lua b/lua/lvim/core/lualine/styles.lua
index 45c6c639..8991d9d9 100644
--- a/lua/lvim/core/lualine/styles.lua
+++ b/lua/lvim/core/lualine/styles.lua
@@ -11,7 +11,7 @@ styles.none = {
style = "none",
options = {
theme = "auto",
- icons_enabled = true,
+ icons_enabled = lvim.use_icons,
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = {},
@@ -40,7 +40,7 @@ styles.default = {
style = "default",
options = {
theme = "auto",
- icons_enabled = true,
+ icons_enabled = lvim.use_icons,
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = {},
@@ -69,7 +69,7 @@ styles.lvim = {
style = "lvim",
options = {
theme = "auto",
- icons_enabled = true,
+ icons_enabled = lvim.use_icons,
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = { "alpha", "NvimTree", "Outline" },