diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-09-27 01:29:24 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-09-27 01:29:24 +0200 |
commit | a70eef2af24f804cc017bb1b03ee238b033bffae (patch) | |
tree | d05b1e9b526dc75242426ee079ae322df72b348d /README.md | |
parent | 2f57d1115e246b62a1a81bba806fe79aaa53b610 (diff) |
Add themes
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -22,6 +22,7 @@ and override these. ```lua require("no-clown-fiesta").setup({ + theme = "dark", -- supported themes are: dark, dim, light transparent = false, -- Enable this to disable the bg color styles = { -- You can set any of the style values specified for `:h nvim_set_hl` @@ -41,8 +42,9 @@ require("no-clown-fiesta").setup({ If you are using the lazy, then you can install and configure the plugin like this: ```fnl -(local opts {:styles {:type {:bold true} - :lsp {:undercurl false} +(local opts {:theme :dark + :styles {:type {:bold true} + :lsp {:underline true} :match_paren {:underline true}}}) (λ config [] @@ -57,6 +59,7 @@ or if you prefer lua: ```lua local opts = { + theme = "dark", styles = { type = { bold = true }, lsp = { underline = false }, @@ -80,6 +83,13 @@ return { Other plugin managers are left as an exercise to the reader. +## Themes + +This plugin supports three different themes: +1. dark = default dark theme +2. dim = low contrast dark theme +3. light = light version (still under development) + ## Supported Plugins - Alpha |