Add: LazyVim colorschemes config
This commit is contained in:
parent
6d276e0b13
commit
d0b89666bc
1 changed files with 87 additions and 0 deletions
87
Configs/nvim/lua/plugins/colorschemes.lua
Normal file
87
Configs/nvim/lua/plugins/colorschemes.lua
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "catppuccin",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
lazy = false,
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
opts = {
|
||||||
|
flavour = "mocha",
|
||||||
|
integrations = {
|
||||||
|
aerial = true,
|
||||||
|
alpha = true,
|
||||||
|
cmp = true,
|
||||||
|
dashboard = true,
|
||||||
|
flash = true,
|
||||||
|
gitsigns = true,
|
||||||
|
headlines = true,
|
||||||
|
illuminate = true,
|
||||||
|
indent_blankline = { enabled = true },
|
||||||
|
leap = true,
|
||||||
|
lsp_trouble = true,
|
||||||
|
mason = true,
|
||||||
|
markdown = true,
|
||||||
|
mini = true,
|
||||||
|
native_lsp = {
|
||||||
|
enabled = true,
|
||||||
|
underlines = {
|
||||||
|
errors = { "undercurl" },
|
||||||
|
hints = { "undercurl" },
|
||||||
|
warnings = { "undercurl" },
|
||||||
|
information = { "undercurl" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
navic = {
|
||||||
|
enabled = true,
|
||||||
|
custom_bg = "lualine",
|
||||||
|
},
|
||||||
|
neogit = true,
|
||||||
|
neotest = true,
|
||||||
|
neotree = true,
|
||||||
|
noice = true,
|
||||||
|
notify = true,
|
||||||
|
semantic_tokens = true,
|
||||||
|
telescope = true,
|
||||||
|
treesitter = true,
|
||||||
|
treesitter_context = true,
|
||||||
|
which_key = true,
|
||||||
|
},
|
||||||
|
color_overrides = {
|
||||||
|
mocha = {
|
||||||
|
rosewater = "#efc9c2",
|
||||||
|
flamingo = "#ebb2b2",
|
||||||
|
pink = "#f2a7de",
|
||||||
|
mauve = "#b889f4",
|
||||||
|
red = "#ea7183",
|
||||||
|
maroon = "#ea838c",
|
||||||
|
peach = "#f39967",
|
||||||
|
yellow = "#eaca89",
|
||||||
|
green = "#96d382",
|
||||||
|
teal = "#78cec1",
|
||||||
|
sky = "#91d7e3",
|
||||||
|
sapphire = "#68bae0",
|
||||||
|
blue = "#739df2",
|
||||||
|
lavender = "#a0a8f6",
|
||||||
|
text = "#b5c1f1",
|
||||||
|
subtext1 = "#a6b0d8",
|
||||||
|
subtext0 = "#959ec2",
|
||||||
|
overlay2 = "#848cad",
|
||||||
|
overlay1 = "#717997",
|
||||||
|
overlay0 = "#63677f",
|
||||||
|
surface2 = "#505469",
|
||||||
|
surface1 = "#3e4255",
|
||||||
|
surface0 = "#2c2f40",
|
||||||
|
base = "#1a1c2a",
|
||||||
|
mantle = "#141620",
|
||||||
|
crust = "#0e0f16",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue