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(added treesitter markdown header and list colors)

ptdewey 148e0e37 a0059791

+10 -3
+4 -1
build.sh
··· 1 - #!/bin/bash 1 + #!/usr/bin/env bash 2 + 3 + # fix build issue when using nix 4 + LUA_PATH=./lush_theme/darkearth.lua 2 5 3 6 nvim --headless +Shipwright +qa 4 7
+3 -1
colors/darkearth.vim
··· 189 189 hi! link Macro PreProc 190 190 hi! link markdownCodeBlock String 191 191 hi! link markdownCodeDelimiter NonText 192 - hi! link markdownHeadingRule NonText 192 + hi! link markdownHeadingRule Special 193 193 hi! link markdownLinkDelimiter Delimiter 194 194 hi! link markdownURLDelimiter Delimiter 195 + hi! link @markup.heading Special 196 + hi! link @markup.list Operator 195 197 hi! link MasonHeaderSecondary LazyButtonActive 196 198 hi! link MasonHighlightBlockBold LazyButtonActive 197 199 hi! link MasonHighlightBlock LazyButtonActive
+3 -1
lush_theme/darkearth.lua
··· 16 16 Normal { fg=hsl(46, 51, 68), bg=bgc, }, 17 17 SpecialKey { fg=hsl(46, 51, 68), }, 18 18 TermCursor { gui="reverse", }, 19 - NonText { fg=hsl(0, 0, 40), gui="bold", }, 19 + NonText { fg=hsl(40, 20, 40), gui="bold", }, 20 20 EndOfBuffer { NonText }, 21 21 Whitespace { NonText }, 22 22 markdownHeadingRule { NonText }, ··· 251 251 sym"@text.uri" { Underlined }, 252 252 sym"@text.underline" { Underlined }, 253 253 sym"@markup.link" { fg=hsl(72, 27, 40), }, 254 + sym"@markup.list" { Operator }, 255 + sym"@markup.heading" { Special }, 254 256 htmlLink { Underlined }, 255 257 helpHyperTextJump { Underlined }, 256 258 helpURL { Underlined },