tangled
alpha
login
or
join now
pdewey.com
/
darkearth-nvim
0
fork
atom
A dark and earthy colorscheme for Neovim. (mirror)
github.com/ptdewey/darkearth-nvim
neovim
neovim-colorscheme
fennel
0
fork
atom
overview
issues
pulls
pipelines
feat: ModeMsg hlgroup
ptdewey
7 months ago
edf42f60
2d45a7f9
+2
2 changed files
expand all
collapse all
unified
split
colors
darkearth.lua
fnl
darkearth
init.fnl
+1
colors/darkearth.lua
···
92
92
theme["ErrorMsg"] = {fg = "#B36B42"}
93
93
theme["WarningMsg"] = {fg = "#B36B42"}
94
94
theme["MoreMsg"] = {bold = true, fg = "#5F865F"}
95
95
+
theme["ModeMsg"] = {bold = true, fg = "#77824A"}
95
96
theme["Bold"] = {bold = true}
96
97
theme["Italic"] = {italic = true}
97
98
theme["Underlined"] = {fg = "#77824A", underline = true}
+1
fnl/darkearth/init.fnl
···
172
172
(hl ErrorMsg :fg (darkOrange))
173
173
(hl WarningMsg :fg (darkOrange))
174
174
(hl MoreMsg :fg (teal) :bold true)
175
175
+
(hl ModeMsg :fg (green) :bold true)
175
176
176
177
;; Text styling
177
178
(hl Bold :bold true)