everforest
This commit is contained in:
parent
c9364446ea
commit
60a86881d8
3 changed files with 1055 additions and 0 deletions
|
@ -28,6 +28,32 @@ foreground = "0xe0e0e0"
|
|||
[colors.vi_mode_cursor]
|
||||
cursor = "0x00ff00"
|
||||
|
||||
# [colors.primary]
|
||||
# background = '#2d353b'
|
||||
# foreground = '#d3c6aa'
|
||||
#
|
||||
# # Normal colors
|
||||
# [colors.normal]
|
||||
# black = '#475258'
|
||||
# red = '#e67e80'
|
||||
# green = '#a7c080'
|
||||
# yellow = '#dbbc7f'
|
||||
# blue = '#7fbbb3'
|
||||
# magenta = '#d699b6'
|
||||
# cyan = '#83c092'
|
||||
# white = '#d3c6aa'
|
||||
#
|
||||
# # Bright colors
|
||||
# [colors.bright]
|
||||
# black = '#475258'
|
||||
# red = '#e67e80'
|
||||
# green = '#a7c080'
|
||||
# yellow = '#dbbc7f'
|
||||
# blue = '#7fbbb3'
|
||||
# magenta = '#d699b6'
|
||||
# cyan = '#83c092'
|
||||
# white = '#d3c6aa'
|
||||
|
||||
[cursor]
|
||||
blink_interval = 470
|
||||
unfocused_hollow = false
|
||||
|
|
7
init.lua
7
init.lua
|
@ -188,6 +188,13 @@ require("lazy").setup({
|
|||
{ "is0n/jaq-nvim", event = "LspAttach" },
|
||||
{ "j-hui/fidget.nvim", config = true, event = "LspAttach" },
|
||||
{ "sainnhe/edge", event = "VeryLazy" },
|
||||
{
|
||||
"sainnhe/everforest",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
vim.g.everforest_background = 'hard'
|
||||
end,
|
||||
},
|
||||
{ "nvim-lua/plenary.nvim", event = "VeryLazy" },
|
||||
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
||||
{ "hrsh7th/nvim-cmp", event = "VeryLazy" },
|
||||
|
|
Loading…
Reference in a new issue