add zenwritten to build

This commit is contained in:
Michael Chris Lopez
2021-10-14 18:19:49 +08:00
parent 7ed46d86d7
commit 8b235543f2
19 changed files with 1035 additions and 10 deletions

View File

@@ -1,9 +1,6 @@
vim.g.colors_name = "forestbones"
-- reset specs
package.loaded["forestbones"] = nil
-- include our theme file and pass it to lush to apply
require "lush"(require "forestbones")
local p = require("forestbones.palette")[vim.opt.background:get()]

View File

@@ -1,9 +1,6 @@
vim.g.colors_name = "rosebones"
-- reset specs
package.loaded["rosebones"] = nil
-- include our theme file and pass it to lush to apply
require "lush"(require "rosebones")
local p = require("rosebones.palette")[vim.opt.background:get()]

View File

@@ -51,7 +51,7 @@ highlight DiagnosticUnderlineInfo guifg=#286486 guibg=NONE guisp=NONE gui=underc
highlight DiagnosticUnderlineWarn guifg=#944927 guibg=NONE guisp=NONE gui=undercurl
highlight DiagnosticVirtualTextError guifg=#A8334C guibg=#E7DDDE guisp=NONE gui=NONE
highlight DiagnosticVirtualTextWarn guifg=#944927 guibg=#F0E6E4 guisp=NONE gui=NONE
highlight DiffAdd guifg=NONE guibg=#BFE2A3 guisp=NONE gui=NONE
highlight DiffAdd guifg=NONE guibg=#C3E0AC guisp=NONE gui=NONE
highlight DiffChange guifg=NONE guibg=#C0DAF2 guisp=NONE gui=NONE
highlight DiffDelete guifg=NONE guibg=#E7CBCE guisp=NONE gui=NONE
highlight DiffText guifg=#2C363C guibg=#99C6E9 guisp=NONE gui=NONE

View File

@@ -1,9 +1,6 @@
vim.g.colors_name = "zenwritten"
-- reset specs
package.loaded["zenwritten"] = nil
-- include our theme file and pass it to lush to apply
require "lush"(require "zenwritten")
local p = require("zenwritten.palette")[vim.opt.background:get()]