From 2363fb3922ca342262797cd07d72c5a9105e00be Mon Sep 17 00:00:00 2001 From: Ralph Date: Wed, 3 Apr 2024 14:49:24 -0700 Subject: [PATCH] use catppuccin --- lua/config/lazy.lua | 4 ++-- lua/plugins/colorscheme.lua | 19 +++++++++++++++++++ lua/plugins/disabled.lua | 3 +++ 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 lua/plugins/colorscheme.lua diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 3ba0bbf..a357d7f 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -26,7 +26,7 @@ require("lazy").setup({ version = false, -- always use the latest git commit -- version = "*", -- try installing the latest stable version for plugins that support semver }, - install = { colorscheme = { "tokyonight", "habamax" } }, + -- install = { colorscheme = { "tokyonight", "habamax" } }, checker = { enabled = true }, -- automatically check for plugin updates performance = { rtp = { @@ -35,7 +35,7 @@ require("lazy").setup({ "gzip", -- "matchit", -- "matchparen", - -- "netrwPlugin", + "netrwPlugin", "tarPlugin", "tohtml", "tutor", diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..186ccbb --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -0,0 +1,19 @@ +return { + { + -- The plugin is "catppuccin/nvim" but LazyVim calls it "catppuccin" + "catppuccin", + opts = { + flavour = "mocha", + dim_inactive = { + enabled = true, + percentage = 0.05, + } + } + }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "catppuccin", + } + }, +} diff --git a/lua/plugins/disabled.lua b/lua/plugins/disabled.lua index 9bdc1b1..ac9949d 100644 --- a/lua/plugins/disabled.lua +++ b/lua/plugins/disabled.lua @@ -7,6 +7,9 @@ return { { "echasnovski/mini.comment", enabled = false }, { "JoosepAlviste/nvim-ts-context-commentstring", enabled = false }, + -- COLORSCHEME + { "folke/tokyonight.nvim", enabled = false }, + -- EDITOR -- remove and replace with nvim-tree; copy config to nvim-tree if possible { "nvim-neo-tree/neo-tree.nvim", enabled = false },