Set matching airline theme

This commit is contained in:
Thomas Gideon 2024-06-23 11:10:23 -04:00
parent 5e5dd9e4d2
commit 994f52bd50

View file

@ -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