From 994f52bd50e8ad1bff42e545e0b14f10e2bdad9d Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Sun, 23 Jun 2024 11:10:23 -0400 Subject: [PATCH] Set matching airline theme --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9ea6bb9..8fb18f5 100644 --- a/init.lua +++ b/init.lua @@ -93,9 +93,10 @@ vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir" 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 breezy") vim.opt.background = "dark" vim.opt.termguicolors = true +vim.cmd("colorscheme breezy") +vim.g.airline_theme = "breezy" -- ensure autoread works, to detect file changes outside the editor vim.opt.autoread = true