A dark and earthy colorscheme for Neovim. (mirror) github.com/ptdewey/darkearth-nvim
neovim neovim-colorscheme fennel
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: `Question` hlgroup

ptdewey 10440691 e09fde1b

+2
+1
colors/darkearth.lua
··· 93 93 theme["WarningMsg"] = {fg = "#B36B42"} 94 94 theme["MoreMsg"] = {bold = true, fg = "#5F865F"} 95 95 theme["ModeMsg"] = {bold = true, fg = "#77824A"} 96 + theme["Question"] = {fg = "#5F865F"} 96 97 theme["Bold"] = {bold = true} 97 98 theme["Italic"] = {italic = true} 98 99 theme["Underlined"] = {fg = "#77824A", underline = true}
+1
fnl/darkearth/init.fnl
··· 173 173 (hl WarningMsg :fg (darkOrange)) 174 174 (hl MoreMsg :fg (teal) :bold true) 175 175 (hl ModeMsg :fg (green) :bold true) 176 + (hl Question :fg (teal)) 176 177 177 178 ;; Text styling 178 179 (hl Bold :bold true)