Skip to content

Commit

Permalink
v0.2i
Browse files Browse the repository at this point in the history
  • Loading branch information
namishh committed Jul 16, 2023
1 parent 03a129c commit e8f74e4
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 6 deletions.
3 changes: 3 additions & 0 deletions colors/gruvl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vim.g.currentTheme = "gruvl"
require("plenary.reload").reload_module "themes"
require("themes").load()
3 changes: 3 additions & 0 deletions colors/nord.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vim.g.currentTheme = "nord"
require("plenary.reload").reload_module "themes"
require("themes").load()
2 changes: 1 addition & 1 deletion lua/core/cfg.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ M.dashboard = {
}
}

M.colorscheme = 'verdant'
M.colorscheme = 'onedarker'
return M
2 changes: 1 addition & 1 deletion lua/plugs/lsp/biscuits.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require('nvim-biscuits').setup({
default_config = {
max_length = 12,
max_length = 6,
min_distance = 5,
prefix_string = " 󰈼 ",
},
Expand Down
8 changes: 4 additions & 4 deletions lua/themes/schemes/gruv.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ function M.get_colors()
return {
comment = "#606372",
contrast = "#1a1917",
background = "#181715",
darker = "#100f0e",
black = "#181715",
background = "#1f1f1f",
darker = "#171717",
black = "#1f1f1f",
foreground = "#fbf1c7",
cursorline = "#1a1917",
cursorline = "#222222",
cursor = "#fbf1c7",
color0 = "#1f1e1b",
color1 = "#da4b3b",
Expand Down
32 changes: 32 additions & 0 deletions lua/themes/schemes/gruvl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
local M = {}

function M.get_colors()
return {
comment = "#606372",
contrast = "#ede5c4",
background = "#f8f0cd",
darker = "#eee6c8",
black = "#f8f0cd",
foreground = "#2b2826",
cursorline = "#f2ecd8",
cursor = "#2b2826",
color0 = "#eee6b6",
color1 = "#cc241d",
color2 = "#9c9b12",
color3 = "#d76821",
color4 = "#458588",
color5 = "#b16286",
color6 = "#689d6a",
color7 = "#2f2a27",
color8 = "#e6deaf",
color9 = "#9d0006",
color10 = "#79740e",
color11 = "#b55614",
color12 = "#076678",
color13 = "#8f3f71",
color14 = "#427b58",
color15 = "#2d2927",
}
end

return M
33 changes: 33 additions & 0 deletions lua/themes/schemes/nord.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
local M = {}

function M.get_colors()
return {
background = "#242832",
contrast = '#262a35',
foreground = "#c7ccd6",
cursorline = '#262a35',
comment = '#79818f',
darker = '#1b1e25',
cursor = "#c7ccd6",
black = "#242832",
color0 = "#2a2e3a",
color1 = "#bf616a",
color2 = "#73be82",
color3 = "#de936b",
color4 = "#7594b3",
color5 = "#b47aa9",
color6 = "#63b0b9",
color7 = "#c7ccd6",
color8 = "#2c303d",
color9 = "#c76871",
color10 = "#80ca8f",
color11 = "#eb9f77",
color12 = "#85a5c4",
color13 = "#b181a8",
color14 = "#90bbb9",
color15 = "#abb2bf",
comment_light = "#9096a1",
}
end

return M

0 comments on commit e8f74e4

Please sign in to comment.