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.

fix: broken diff plus link, bad link in README

ptdewey 4b6f1807 d430d28e

+4 -4
+1 -1
README.md
··· 41 41 - With `fennel`: Use `./build.sh` or `just build` 42 42 - With `hotpot.nvim`: Builds are automatic upon saving `fnl/darkearth/init.fnl` 43 43 44 - Note: The version of darkearth made with [lush](https://github.com/rktjmp/lush.nvim) can be found on the [v1 branch](https://github.com/ptdewey/darkearth-nvim/tree/v2) 44 + Note: The version of darkearth made with [lush](https://github.com/rktjmp/lush.nvim) can be found on the [v1 branch](https://github.com/ptdewey/darkearth-nvim/tree/v1) 45 45 46 46 ## Extras 47 47
+1 -1
colors/darkearth.lua
··· 110 110 theme["@text.diff.add"] = {link = "DiffAdd"} 111 111 theme["Added"] = {fg = "#5F865F"} 112 112 theme["DiffAdded"] = {link = "Added"} 113 - theme["@diff.plus"] = {} 113 + theme["@diff.plus"] = {link = "Added"} 114 114 theme["DiffChange"] = {bg = "#675642", fg = "#212121"} 115 115 theme["@text.diff.change"] = {link = "DiffChange"} 116 116 theme["Changed"] = {fg = "#675642"}
+2 -2
fnl/darkearth/init.fnl
··· 197 197 (ln "@text.diff.add" DiffAdd) 198 198 (hl Added :fg (teal)) 199 199 (ln DiffAdded Added) 200 - (hl "@diff.plus" Added) 200 + (ln "@diff.plus" Added) 201 201 (hl DiffChange :fg (altBg) :bg (diffChange)) 202 202 (ln "@text.diff.change" DiffChange) 203 203 (hl Changed :fg (diffChange)) ··· 340 340 (ln GitSignsChange Changed) 341 341 (ln GitSignsDelete Removed) 342 342 343 - ;; Convert to table 343 + ;; Colorscheme setup 344 344 (vim.cmd "highlight clear") 345 345 (vim.cmd "set t_Co=256") 346 346 (vim.cmd "let g:colors_name='darkearth'")