-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorschemes.lua
68 lines (68 loc) · 1.35 KB
/
colorschemes.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
return {
{
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
priority = 1000,
},
{
"sainnhe/everforest",
lazy = true,
priority = 1000,
config = function()
-- Set contrast ("hard/medium/soft")
vim.g.everforest_background = "hard"
end,
},
{
"sainnhe/gruvbox-material",
lazy = true,
priority = 1000,
config = function()
-- Set contrast ("hard/medium/soft")
vim.g.gruvbox_material_background = "medium"
end,
},
{
"ellisonleao/gruvbox.nvim",
lazy = true,
priority = 1000,
},
{
"rebelot/kanagawa.nvim",
lazy = true,
priority = 1000,
opts = {
-- Remove the background of LineNr, {Sign,Fold}Column and friends
colors = {
theme = {
all = {
ui = {
bg_gutter = "none",
},
},
},
},
},
},
{
"rose-pine/neovim",
name = "rose-pine",
lazy = true,
priority = 1000,
},
{
"folke/tokyonight.nvim",
lazy = true,
priority = 1000,
},
{
"Mofiqul/vscode.nvim",
lazy = true,
priority = 1000,
opts = {
-- Enable italic comment
italic_comments = true,
},
},
}