Skip to content

Commit

Permalink
Use custom cyberdream lualine theme ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Dec 27, 2023
1 parent a54f7c3 commit f8fabfd
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions nvim/lua/plugins/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ return {
event = "VeryLazy",
opts = function()
local colors = require("cyberdream.colors").default
local cyberdream = require("lualine.themes.cyberdream")
local copilot_colors = {
[""] = { fg = colors.grey, bg = colors.none },
["Normal"] = { fg = colors.grey, bg = colors.none },
Expand All @@ -12,29 +13,7 @@ return {
return {
options = {
component_separators = { left = " ", right = " " },
theme = {
normal = {
a = { fg = colors.blue, bg = colors.none },
b = { fg = colors.cyan, bg = colors.none },
c = { fg = colors.fg, bg = colors.none },
x = { fg = colors.fg, bg = colors.none },
y = { fg = colors.magenta, bg = colors.none },
z = { fg = colors.grey, bg = colors.none },
},
insert = {
a = { fg = colors.green, bg = colors.none },
z = { fg = colors.grey, bg = colors.none },
},
visual = {
a = { fg = colors.magenta, bg = colors.none },
z = { fg = colors.grey, bg = colors.none },
},
terminal = {
a = { fg = colors.orange, bg = colors.none },
z = { fg = colors.grey, bg = colors.none },
},
},

theme = cyberdream,
globalstatus = true,
disabled_filetypes = { statusline = { "dashboard", "alpha" } },
},
Expand Down

0 comments on commit f8fabfd

Please sign in to comment.