diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-09-29 22:07:02 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-09-29 22:07:02 +0200 |
commit | 04b808e9769ded988089772ffcaf08d92d75d927 (patch) | |
tree | 64ecee652f335c3e47987e004a140bd345baafc3 /README.md | |
parent | cff4050e8c5d604441f1d743843044467c4f764d (diff) |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -49,8 +49,7 @@ If you are using the lazy, then you can install and configure the plugin like th (λ config [] (let [plugin (require :no-clown-fiesta)] - (plugin.setup opts) - (plugin.load))) + (plugin.load opts))) {1 :aktersnurra/no-clown-fiesta.nvim :lazy false :priority 1000 : config} ``` @@ -69,8 +68,7 @@ local opts = { local function config() local plugin = require "no-clown-fiesta" - plugin.setup(opts) - return plugin.load() + return plugin.load(opts) end return { @@ -116,3 +114,11 @@ This plugin supports three different themes: - WhichKey - mini.statusline - DiffView + +### Lualine + +Enable theme by setting the `theme` options in the lualine options, e.g.: + +```fnl +(local opts {:options {:theme :no-clown-fiesta}}) +``` |