themes #511
Unanswered
bryant-the-coder
asked this question in
Q&A
themes
#511
Replies: 2 comments 23 replies
-
Sorry I have no clue what you're talking about . Specify what you're looking for properly please. |
Beta Was this translation helpful? Give feedback.
6 replies
-
What icon you want to change ?
You can do something like this (if you are using use({
"nvim-lualine/lualine.nvim",
config = function()
local hours = tonumber(os.date("%-H"))
local theme = "gruvbox"
if hours >= 19 or hours < 7 then
theme = "tokyonight"
end
require("lualine").setup({
options = {
theme = theme,
-- the rest of your options
},
-- the rest of your lualine configuration
})
end,
}) |
Beta Was this translation helpful? Give feedback.
17 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how can i change the icon in different mode, changing the theme according to the time
Beta Was this translation helpful? Give feedback.
All reactions