From ac2ac080c9c4ab7e4c1f75268f603b8455679bb2 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 4 Jul 2024 19:31:51 +0200 Subject: [PATCH] moar theme --- lua/custom/plugins/themes.lua | 19 ++++++++++++++++++- lua/settings/theme.lua | 4 ++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/lua/custom/plugins/themes.lua b/lua/custom/plugins/themes.lua index b97a722..96b8616 100644 --- a/lua/custom/plugins/themes.lua +++ b/lua/custom/plugins/themes.lua @@ -28,11 +28,28 @@ return { name = 'tokyonight-storm', colorscheme = 'tokyonight-storm', }, + { + name = 'kanagawa', + colorscheme = 'kanagawa', + }, + { + name = 'kanagawa-dragon', + colorscheme = 'kanagawa-dragon', + }, + { + name = 'kanagawa-lotus', + colorscheme = 'kanagawa-lotus', + }, + { + name = 'kanagawa-wave', + colorscheme = 'kanagawa-wave', + }, }, themeConfigFile = '~/.config/nvim/lua/settings/theme.lua', livePreview = true, -- Apply theme while browsing. Default to true. } end, }, - { 'folke/tokyonight.nvim' }, + 'folke/tokyonight.nvim', + 'rebelot/kanagawa.nvim', } diff --git a/lua/settings/theme.lua b/lua/settings/theme.lua index 917a7c0..55fb22d 100644 --- a/lua/settings/theme.lua +++ b/lua/settings/theme.lua @@ -1,5 +1,5 @@ -- Themery block -- This block will be replaced by Themery. -vim.cmd("colorscheme tokyonight-storm") -vim.g.theme_id = 4 +vim.cmd("colorscheme kanagawa-wave") +vim.g.theme_id = 8 -- end themery block