To enable the github
theme for Lualine
, simply specify it in your lualine settings after theme settings.
use {
"hoob3rt/lualine.nvim",
after = "github-nvim-theme",
config = function()
require("lualine").setup {
options = {
theme = "auto" -- or you can assign github_* themes individually.
-- ... your lualine config
}
}
end
}
use {
"projekt0n/github-nvim-theme",
config = function()
require("github-theme").setup({
theme_style = "dark_default"
-- your github config
})
end
}
lua << EOF
require('lualine').setup {
options = {
theme = "auto" -- or you can assign github_* themes individually.
-- ... your lualine config
}
}
EOF
require('lualine').setup {
options = {
theme = "auto" -- or you can assign github_* themes individually.
-- ... your lualine config
}
}