diff options
| author | beeb5k <beebeeb5k@gmail.com> | 2026-06-20 01:46:06 +0530 |
|---|---|---|
| committer | beeb5k <beebeeb5k@gmail.com> | 2026-06-20 01:46:06 +0530 |
| commit | c936db0627f277852fa69a9f5ed1d561c4512394 (patch) | |
| tree | 7e283533e7705551024ef595b8848501a62f7b9e /lua/bee/init.lua | |
| parent | 3045b8bff449456fc833ee7447bf9692a2bd5c4e (diff) | |
kanagawa-paper and all possible colorscheme names for colorscheme option tabel
Diffstat (limited to 'lua/bee/init.lua')
| -rw-r--r-- | lua/bee/init.lua | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/lua/bee/init.lua b/lua/bee/init.lua index 05c56a4..55f253e 100644 --- a/lua/bee/init.lua +++ b/lua/bee/init.lua @@ -42,12 +42,28 @@ nixInfo.lze.load({ { "tokyonight.nvim", auto_enable = true, - colorscheme = "tokyonight", + colorscheme = { "tokyonight", "tokyonight-day", "tokyonight-moon", "tokyonight-storm", "tokyonight-night" }, }, { + "kanagawa.nvim", auto_enable = true, - colorscheme = "kanagawa", + colorscheme = { "kanagawa", "kanagawa-dragon", "kanagawa-lotus" }, + after = function(_) + require("kanagawa").setup({ + compile = true, + }) + end, + }, + { + "kanagawa-paper.nvim", + auto_enable = true, + colorscheme = { "kanagawa-paper", "kanagawa-paper-ink", "kanagawa-paper-canvas" }, + after = function(_) + require("kanagawa-paper").setup({ + cache = true, + }) + end, }, { "nvim-surround", @@ -96,5 +112,3 @@ nixInfo.lze.load({ end, }, }) - -vim.cmd.colorscheme("tokyonight") |
