summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-06-20 01:46:06 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-06-20 01:46:06 +0530
commitc936db0627f277852fa69a9f5ed1d561c4512394 (patch)
tree7e283533e7705551024ef595b8848501a62f7b9e
parent3045b8bff449456fc833ee7447bf9692a2bd5c4e (diff)
kanagawa-paper and all possible colorscheme names for colorscheme option tabel
-rw-r--r--lua/bee/init.lua22
-rw-r--r--lua/bee/plugins/ui.lua54
-rw-r--r--module.nix1
3 files changed, 46 insertions, 31 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")
diff --git a/lua/bee/plugins/ui.lua b/lua/bee/plugins/ui.lua
index 55224cd..daffd13 100644
--- a/lua/bee/plugins/ui.lua
+++ b/lua/bee/plugins/ui.lua
@@ -10,33 +10,33 @@ return {
section_separators = {},
},
sections = {
- lualine_a = {
- {
- "mode",
- fmt = function(mode)
- return ({
- ["NORMAL"] = "っ( ' ᵕ ' )っ",
- ["O-PENDING"] = "っ( º _ º )っ",
- ["INSERT"] = "っ(>‿<)っ✎",
- ["VISUAL"] = "っ(⊙‿⊙)っ",
- ["V-LINE"] = "っ(ò_ó)っ¤=[]::>",
- ["V-BLOCK"] = "っ[ •̀ ⌂ •́ ]っ",
- ["REPLACE"] = "っ( O )っ",
- ["V-REPLACE"] = "っ[ O ]っ",
- ["COMMAND"] = "っ(ง •̀_•́)ง",
- ["TERMINAL"] = "っ( ͡° ͜ʖ ͡°)っ",
- ["EX"] = "っ( ͡ಠ ͜ʖ ͡ಠ)ง",
- ["SHELL"] = "っ(©_©)っ",
- ["MORE"] = "っ(°-° )っ",
- ["CONFIRM"] = "っ( 0_0)?",
-
- -- ["SELECT"] = "っ(づ。◕‿‿◕。)づ",
- -- ["S-LINE"] = "っ(づ。◕‿‿◕。)づ¤",
- -- ["S-BLOCK"] = "っ[づ。◕‿‿◕。]づ",
- })[mode] or mode
- end,
- },
- },
+ -- lualine_a = {
+ -- {
+ -- "mode",
+ -- fmt = function(mode)
+ -- return ({
+ -- ["NORMAL"] = "っ( ' ᵕ ' )っ",
+ -- ["O-PENDING"] = "っ( º _ º )っ",
+ -- ["INSERT"] = "っ(>‿<)っ✎",
+ -- ["VISUAL"] = "っ(⊙‿⊙)っ",
+ -- ["V-LINE"] = "っ(ò_ó)っ¤=[]::>",
+ -- ["V-BLOCK"] = "っ[ •̀ ⌂ •́ ]っ",
+ -- ["REPLACE"] = "っ( O )っ",
+ -- ["V-REPLACE"] = "っ[ O ]っ",
+ -- ["COMMAND"] = "っ(ง •̀_•́)ง",
+ -- ["TERMINAL"] = "っ( ͡° ͜ʖ ͡°)っ",
+ -- ["EX"] = "っ( ͡ಠ ͜ʖ ͡ಠ)ง",
+ -- ["SHELL"] = "っ(©_©)っ",
+ -- ["MORE"] = "っ(°-° )っ",
+ -- ["CONFIRM"] = "っ( 0_0)?",
+ --
+ -- -- ["SELECT"] = "っ(づ。◕‿‿◕。)づ",
+ -- -- ["S-LINE"] = "っ(づ。◕‿‿◕。)づ¤",
+ -- -- ["S-BLOCK"] = "っ[づ。◕‿‿◕。]づ",
+ -- })[mode] or mode
+ -- end,
+ -- },
+ -- },
lualine_c = {
{
"filename",
diff --git a/module.nix b/module.nix
index d7074f7..06a302c 100644
--- a/module.nix
+++ b/module.nix
@@ -149,6 +149,7 @@ inputs:
tokyonight-nvim
kanagawa-nvim
+ kanagawa-paper-nvim
config.nvim-lib.neovimPlugins.neogit
blink-indent
blink-pairs