From 23b07f56d9574d0ece2b6ac65149d514d014e718 Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Sun, 23 Jun 2024 10:33:41 -0400 Subject: [PATCH] Restore breezy theme - Setting background to dark and disabling colorscheme switch based on filetype seems to have resolved the issues. --- init.lua | 2 +- plug.lua | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 48b635d..ef0a44b 100644 --- a/init.lua +++ b/init.lua @@ -97,7 +97,7 @@ end vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"}) -- make sure to set TERM to xterm-256color in terminal program or app -vim.cmd("colorscheme desert") +vim.cmd("colorscheme breezy") vim.opt.background = "dark" vim.opt.termguicolors = true diff --git a/plug.lua b/plug.lua index 518c76f..b9334f7 100644 --- a/plug.lua +++ b/plug.lua @@ -11,6 +11,9 @@ vim.call('plug#begin') -- dynamic font resizing(using ctl and arrow keys Plug('tenxsoydev/size-matters.nvim') +-- custom colorscheme +Plug('fneu/breezy') + -- informational -- lightweight but sophisticated status line