mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
enc: add config lualine eva-dark theme
This commit is contained in:
parent
52b270121f
commit
224d29c616
3 changed files with 32 additions and 2 deletions
|
@ -45,7 +45,7 @@
|
|||
"nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" },
|
||||
"nvim-scrollview": { "branch": "main", "commit": "30ca6e18265928eb4ea7402346b4dfddbd8ce41e" },
|
||||
"nvim-tree.lua": { "branch": "master", "commit": "f9ff00bc06d7cb70548a3847d7a2a05e928bc988" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "4e387dd47833c1bb8c8df6c3a7cab0d4c55583f3" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "667b9dbbfa2d0071c5677c429ddcf89fb931b53f" },
|
||||
"nvim-treesitter-textobjects": { "branch": "master", "commit": "34867c69838078df7d6919b130c0541c0b400c47" },
|
||||
"nvim-ts-autotag": { "branch": "main", "commit": "1624866a1379fc1861797f0ed05899a9c1d2ff61" },
|
||||
"nvim-ts-context-commentstring": { "branch": "main", "commit": "6b5f95aa4d24f2c629a74f2c935c702b08dbde62" },
|
||||
|
|
|
@ -33,6 +33,36 @@ return {
|
|||
colors.cyan = clr.yellow
|
||||
set_theme = "bubbles_theme"
|
||||
end,
|
||||
["Eva-Dark"] = function()
|
||||
colors.skyblue_1 = "#56B7C3"
|
||||
colors.grey = "#3b4261"
|
||||
colors.blue = "#98C379"
|
||||
colors.cyan = "#B0B7C3"
|
||||
colors.yellow = "#EF973A"
|
||||
colors.green1 = "#6495EE"
|
||||
colors.red = "#E06C75"
|
||||
set_theme = "bubbles_theme"
|
||||
end,
|
||||
["Eva-Dark-Italic"] = function()
|
||||
colors.skyblue_1 = "#598DEF"
|
||||
colors.grey = "#3b4261"
|
||||
colors.blue = "#98C379"
|
||||
colors.cyan = "#B0B7C3"
|
||||
colors.yellow = "#EF973A"
|
||||
colors.green1 = "#56B7C3"
|
||||
colors.red = "#E06C75"
|
||||
set_theme = "bubbles_theme"
|
||||
end,
|
||||
["Eva-Dark-Bold"] = function()
|
||||
colors.skyblue_1 = "#598DEF"
|
||||
colors.grey = "#3b4261"
|
||||
colors.blue = "#98C379"
|
||||
colors.cyan = "#B0B7C3"
|
||||
colors.yellow = "#EF973A"
|
||||
colors.green1 = "#56B7C3"
|
||||
colors.red = "#E06C75"
|
||||
set_theme = "bubbles_theme"
|
||||
end,
|
||||
default = function()
|
||||
set_theme = "auto"
|
||||
end,
|
||||
|
|
|
@ -329,7 +329,7 @@ return {
|
|||
return {
|
||||
normal = {
|
||||
a = { fg = colors.black, bg = colors.skyblue_1 },
|
||||
b = { fg = colors.white, bg = colors.grey },
|
||||
b = { fg = colors.skyblue_1, bg = colors.grey },
|
||||
c = { fg = colors.white, bg = colors.black_transparant },
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue