Skip to content

Commit e8f74e4

Browse files
committed
v0.2i
1 parent 03a129c commit e8f74e4

File tree

7 files changed

+77
-6
lines changed

7 files changed

+77
-6
lines changed

colors/gruvl.lua

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vim.g.currentTheme = "gruvl"
2+
require("plenary.reload").reload_module "themes"
3+
require("themes").load()

colors/nord.lua

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vim.g.currentTheme = "nord"
2+
require("plenary.reload").reload_module "themes"
3+
require("themes").load()

lua/core/cfg.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ M.dashboard = {
5555
}
5656
}
5757

58-
M.colorscheme = 'verdant'
58+
M.colorscheme = 'onedarker'
5959
return M

lua/plugs/lsp/biscuits.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require('nvim-biscuits').setup({
22
default_config = {
3-
max_length = 12,
3+
max_length = 6,
44
min_distance = 5,
55
prefix_string = " 󰈼 ",
66
},

lua/themes/schemes/gruv.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ function M.get_colors()
44
return {
55
comment = "#606372",
66
contrast = "#1a1917",
7-
background = "#181715",
8-
darker = "#100f0e",
9-
black = "#181715",
7+
background = "#1f1f1f",
8+
darker = "#171717",
9+
black = "#1f1f1f",
1010
foreground = "#fbf1c7",
11-
cursorline = "#1a1917",
11+
cursorline = "#222222",
1212
cursor = "#fbf1c7",
1313
color0 = "#1f1e1b",
1414
color1 = "#da4b3b",

lua/themes/schemes/gruvl.lua

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
local M = {}
2+
3+
function M.get_colors()
4+
return {
5+
comment = "#606372",
6+
contrast = "#ede5c4",
7+
background = "#f8f0cd",
8+
darker = "#eee6c8",
9+
black = "#f8f0cd",
10+
foreground = "#2b2826",
11+
cursorline = "#f2ecd8",
12+
cursor = "#2b2826",
13+
color0 = "#eee6b6",
14+
color1 = "#cc241d",
15+
color2 = "#9c9b12",
16+
color3 = "#d76821",
17+
color4 = "#458588",
18+
color5 = "#b16286",
19+
color6 = "#689d6a",
20+
color7 = "#2f2a27",
21+
color8 = "#e6deaf",
22+
color9 = "#9d0006",
23+
color10 = "#79740e",
24+
color11 = "#b55614",
25+
color12 = "#076678",
26+
color13 = "#8f3f71",
27+
color14 = "#427b58",
28+
color15 = "#2d2927",
29+
}
30+
end
31+
32+
return M

lua/themes/schemes/nord.lua

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
local M = {}
2+
3+
function M.get_colors()
4+
return {
5+
background = "#242832",
6+
contrast = '#262a35',
7+
foreground = "#c7ccd6",
8+
cursorline = '#262a35',
9+
comment = '#79818f',
10+
darker = '#1b1e25',
11+
cursor = "#c7ccd6",
12+
black = "#242832",
13+
color0 = "#2a2e3a",
14+
color1 = "#bf616a",
15+
color2 = "#73be82",
16+
color3 = "#de936b",
17+
color4 = "#7594b3",
18+
color5 = "#b47aa9",
19+
color6 = "#63b0b9",
20+
color7 = "#c7ccd6",
21+
color8 = "#2c303d",
22+
color9 = "#c76871",
23+
color10 = "#80ca8f",
24+
color11 = "#eb9f77",
25+
color12 = "#85a5c4",
26+
color13 = "#b181a8",
27+
color14 = "#90bbb9",
28+
color15 = "#abb2bf",
29+
comment_light = "#9096a1",
30+
}
31+
end
32+
33+
return M

0 commit comments

Comments
 (0)