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.

refactor: lightearth tweaks

authored by

Patrick Dewey and committed by
Patrick Dewey
f83f9878 84485491

+9 -3
+5 -2
colors/lightearth.lua
··· 182 182 theme["DiagnosticVirtualTextOk"] = {link = "DiagnosticOk"} 183 183 theme["Todo"] = {bg = "#252F1E", fg = "#F0EBE1"} 184 184 theme["@text.todo"] = {link = "Todo"} 185 + theme["TodoBgTODO"] = {bg = "#B8BE96", bold = true, fg = "#252F1E"} 186 + theme["TodoFgTODO"] = {fg = "#77824A"} 185 187 theme["htmlLink"] = {link = "Underlined"} 186 188 theme["markdownBold"] = {link = "Bold"} 187 189 theme["markdownItalic"] = {link = "Italic"} ··· 201 203 theme["FzfLuaNormal"] = {link = "Normal"} 202 204 theme["FzfLuaTitle"] = {link = "FloatTitle"} 203 205 theme["FzfLuaBorder"] = {link = "FloatBorder"} 204 - theme["FzfLuaCursor"] = {link = "Cursor"} 206 + theme["FzfLuaBackdrop"] = {fg = "#C2BAA8"} 207 + theme["FzfLuaCursor"] = {bg = "#77824A", fg = "#F5F0E6"} 205 208 theme["FzfLuaCursorLine"] = {link = "CursorLine"} 206 209 theme["FzfLuaCursorLineNr"] = {link = "CursorLineNr"} 207 210 theme["FzfLuaSearch"] = {link = "IncSearch"} ··· 226 229 for group, attr in pairs(theme) do 227 230 vim.api.nvim_set_hl(0, group, attr) 228 231 end 229 - return nil 232 + return nil
+4 -1
fnl/lightearth/init.fnl
··· 292 292 ;; Todo comments 293 293 (hl Todo :fg (bg) :bg (fg)) 294 294 (ln "@text.todo" Todo) 295 + (hl TodoBgTODO :fg (fg) :bg (darkGreenAlt) :bold true) 296 + (hl TodoFgTODO :fg (green)) 295 297 296 298 ;; Language overrides 297 299 (ln htmlLink Underlined) ··· 323 325 (ln FzfLuaNormal Normal) 324 326 (ln FzfLuaTitle FloatTitle) 325 327 (ln FzfLuaBorder FloatBorder) 326 - (ln FzfLuaCursor Cursor) 328 + (hl FzfLuaBackdrop :fg (nonText)) 329 + (hl FzfLuaCursor :fg (altBg) :bg (green)) 327 330 (ln FzfLuaCursorLine CursorLine) 328 331 (ln FzfLuaCursorLineNr CursorLineNr) 329 332 (ln FzfLuaSearch IncSearch)