diff options
-rw-r--r-- | lua/core/colorscheme.lua | 41 | ||||
-rw-r--r-- | lua/plugins/plugins.lua | 2 |
2 files changed, 2 insertions, 41 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua index 7b0a465..ebda145 100644 --- a/lua/core/colorscheme.lua +++ b/lua/core/colorscheme.lua @@ -1,41 +1,2 @@ -- Config in lua -require("catppuccin").setup({ - flavour = "frappe", -- latte, frappe, macchiato, mocha - background = { -- :h background - light = "latte", - dark = "frappe", - }, - compile_path = vim.fn.stdpath("cache") .. "/catppuccin", - transparent_background = false, - term_colors = true, - dim_inactive = { - enabled = false, - shade = "dark", - percentage = 0.15, - }, - styles = { - comments = { "italic" }, - conditionals = { "italic" }, - loops = {}, - functions = {}, - keywords = {}, - strings = {}, - variables = {}, - numbers = {}, - booleans = {}, - properties = {}, - types = {}, - operators = {}, - }, - color_overrides = {}, - custom_highlights = {}, - integrations = { - cmp = true, - gitsigns = true, - nvimtree = true, - telescope = true, - treesitter = true, - -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations) - }, -}) -vim.api.nvim_command "colorscheme catppuccin" +vim.cmd[[colorscheme oh-lucy]] diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 8e6561e..868c3bd 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -34,7 +34,7 @@ return packer.startup(function(use) use 'wbthomason/packer.nvim' -- Color scheme - use 'catppuccin/nvim' + use 'Yazeed1s/oh-lucy.nvim' -- File tree use 'nvim-tree/nvim-tree.lua' |