From 26f222afc8c0b6b9260252ed4e591221a414acd1 Mon Sep 17 00:00:00 2001 From: Zachary Tucker Date: Fri, 28 Apr 2023 12:32:16 -0400 Subject: [PATCH] feat(color): Use light theme Dark theme is a lot harder on the eyes. This switches the theme to a more user friendly light theme. We are programmers not basement dwellers. --- roles/vim/files/nvim/lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/vim/files/nvim/lua/config/lazy.lua b/roles/vim/files/nvim/lua/config/lazy.lua index 67e5a6e..469952b 100644 --- a/roles/vim/files/nvim/lua/config/lazy.lua +++ b/roles/vim/files/nvim/lua/config/lazy.lua @@ -13,7 +13,7 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath) require("lazy").setup({ spec = { - { "LazyVim/LazyVim", import = "lazyvim.plugins", opts = { colorscheme = "catppuccin" } }, + { "LazyVim/LazyVim", import = "lazyvim.plugins", opts = { colorscheme = "catppuccin-latte" } }, { import = "lazyvim.plugins.extras.coding.copilot" }, { import = "lazyvim.plugins.extras.lang.json" }, { import = "lazyvim.plugins.extras.lang.typescript" },