all repos — desert-witch.nvim @ af92c00cf8e3de4dd8b298453a38f3955148f37c

An earthy, mystical color palette for neovim

docs: Add README.md
trickyni trickyniv56@gmail.com
Tue, 02 Dec 2025 13:28:24 +0200
commit

af92c00cf8e3de4dd8b298453a38f3955148f37c

parent

7b2de9f1049dc37a60ac2406728e31d5126e342a

2 files changed, 67 insertions(+), 0 deletions(-)

jump to
A README.md

@@ -0,0 +1,67 @@

+# desert-witch.nvim + +An earthy, mystical color palette. + +![screenshot](screenshot.png) + +## Features: + +- Warm, quiet colors, focusing on shades of brown. +- hand-picked syntax highlighting, balancing clarity, minimalism, and +- special bold/italics highlighting for featureless fonts. + aesthetics. + +### Plugin Support + +- [TreeSitter](https://github.com/nvim-treesitter/nvim-treesitter) +- [RenderMarkdown](https://github.com/MeanderingProgrammer/render-markdown.nvim) +- [Git Signs](https://github.com/lewis6991/gitsigns.nvim) +- [WhichKey](https://github.com/liuchengxu/vim-which-key) +- [RainbowDelimiter](https://github.com/HiPhish/rainbow-delimiters.nvim) +- [Blink.cmp](https://github.com/saghen/blink.cmp) +- [mini.tabline](https://github.com/nvim-mini/mini.tabline) +- [mini.hipatterns](https://github.com/nvim-mini/mini.hipatterns/) +- and more! + +## Installation: + +using vim.pack.add (Neovim v0.12+) + +``` +vim.pack.add({"https://codeberg.org/trickyni/desert-witch.nvim/src/branch/main"}) +vim.cmd("colorscheme desert-witch") +``` + +using [lazy.nvim](https://github.com/folke/lazy.nvim): + +``` +{ + "https://codeberg.org/trickyni/desert-witch.nvim/src/branch/main", + lazy = false, + priority = 1000, + config = function() + vim.cmd("colorscheme desert-witch") + end, +} +``` + +## Future plans: + +- [ ] Lualine theme +- [ ] Detailed breakdown of the palette and the use for each color +- [ ] Support for more plugins and bespoke tailoring for more languages + +## Feedback welcome! + +Desert Witch is mainly tested on QML, Javascript, CSS and HTML, and is tweaked for the plugins I personally enjoy. + +If you're readiding this: First, thank you for taking a moment to appreciate my personal love-letter to the color brown. +Second: If you'd like to extend this theme, (or if you'd like me to do it!) +please, make some noise! + +## Inspiration + +- [Nord theme](https://www.nordtheme.com/) +- [Tonsky.me: I am sorry, but everyone is getting syntax highlighting wrong](https://tonsky.me/blog/syntax-highlighting/) +- [mini.base16](https://github.com/nvim-mini/mini.base16) +- [ymir.nvim](https://github.com/Ronxvier/ymir.nvim/tree/main)