Restore breezy theme
- Setting background to dark and disabling colorscheme switch based on filetype seems to have resolved the issues.
This commit is contained in:
parent
21e9dfa8b0
commit
23b07f56d9
2 changed files with 4 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -97,7 +97,7 @@ end
|
||||||
vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"})
|
vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"})
|
||||||
|
|
||||||
-- make sure to set TERM to xterm-256color in terminal program or app
|
-- 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.background = "dark"
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
|
|
3
plug.lua
3
plug.lua
|
@ -11,6 +11,9 @@ vim.call('plug#begin')
|
||||||
-- dynamic font resizing(using ctl and arrow keys
|
-- dynamic font resizing(using ctl and arrow keys
|
||||||
Plug('tenxsoydev/size-matters.nvim')
|
Plug('tenxsoydev/size-matters.nvim')
|
||||||
|
|
||||||
|
-- custom colorscheme
|
||||||
|
Plug('fneu/breezy')
|
||||||
|
|
||||||
|
|
||||||
-- informational
|
-- informational
|
||||||
-- lightweight but sophisticated status line
|
-- lightweight but sophisticated status line
|
||||||
|
|
Loading…
Reference in a new issue