summaryrefslogtreecommitdiff
path: root/README.md
blob: 3ad03dc38ef568867b5beadfcf37803d9064e3dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# No Clown Fiesta

An attempt at a color scheme that does not look like a clown puked up the source code.

![image](https://gustafrydholm.xyz/images/no-clown-fiesta.png)

## Usage

To enable this colorscheme:

```vim
colorscheme no-clown-fiesta
```

```lua
vim.cmd[[colorscheme no-clown-fiesta]]
```

To override the default settings you need to call setup before enabling the
colorscheme. No-clown-fiesta will use these settings, unless you call setup
and override these.

```lua
require("no-clown-fiesta").setup({
  transparent = false, -- Enable this to disable the bg color
  styles = {
    -- You can set any of the style values specified for `:h nvim_set_hl`
    comments = {},
    functions = {},
    keywords = {},
    lsp = {},
    match_paren = {},
    type = {},
    variables = {},
  },
})
```

### Installation

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}
                      :match_paren {:underline true}}})

(λ config []
  (let [plugin (require :no-clown-fiesta)]
    (plugin.setup opts)
    (plugin.load)))

{1 :aktersnurra/no-clown-fiesta.nvim :lazy false :priority 1000 : config}
```

or if you prefer lua:

```lua
local opts = {
  styles = {
    type = { bold = true },
    lsp = { underline = false },
    match_paren = { underline = true },
  },
}

local function config()
  local plugin = require "no-clown-fiesta"
  plugin.setup(opts)
  return plugin.load()
end

return {
  "aktersnurra/no-clown-fiesta.nvim",
  priority = 1000,
  config = config,
  lazy = false,
}
```

Other plugin managers are left as an exercise to the reader.

## Supported Plugins

- Alpha
- Dadbod-ui
- Dap UI
- Git
- Hop
- LSP
- Lazy
- Leap
- Lir
- Lualine
- Markdown
- Mason
- Neogit
- Neotest
- NvimCmp
- NvimTree
- Orgmode
- StatusLine
- Telescope
- Treesitter
- WhichKey
- mini.statusline