From 6ff8ec857791811c7f7e6396636c700798baf92a Mon Sep 17 00:00:00 2001 From: Lorran David Date: Tue, 8 Apr 2025 21:25:23 -0300 Subject: [PATCH] change colorscheme --- lua/custom/plugins/colorschemes.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/colorschemes.lua b/lua/custom/plugins/colorschemes.lua index a990563b..bf9407fa 100644 --- a/lua/custom/plugins/colorschemes.lua +++ b/lua/custom/plugins/colorschemes.lua @@ -47,7 +47,7 @@ return { -- vim.g.sonokai_style = 'shusia' vim.cmd.colorscheme 'sonokai' end, - enabled = true, + enabled = false, }, { @@ -193,4 +193,15 @@ return { end, enabled = false, }, + + { + "lunacookies/vim-colors-xcode", + lazy = false, + priority = 1000, + config = function() + vim.defer_fn(function() + vim.cmd.colorscheme 'xcodedarkhc' + end, 0) + end, + } }