Change to nightfox theme, set termguicolours earlier and set fallback background for notify to fix popup

This commit is contained in:
Evie Litherland-Smith 2023-01-16 11:25:17 +00:00
parent 61dd4d320f
commit 609181273f
3 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,3 @@
vim.cmd("set termguicolors")
local options = {
transparent = true,
modules = {
@ -27,4 +26,4 @@ require('nightfox').setup {
options = options,
}
require('nightfox').compile()
vim.cmd("colorscheme duskfox")
vim.cmd("colorscheme nightfox")

View file

@ -5,6 +5,7 @@ vim.g.python_indent = {
continue = 'shiftwidth()',
closed_paren_align_last_line = 'v:false',
}
vim.opt.termguicolors = true
vim.opt.mouse = "nvi"
vim.opt.shiftwidth = 4
vim.opt.number = true

View file

@ -17,6 +17,9 @@ require('packer').startup {
use {
'rcarriga/nvim-notify',
config = function()
require("notify").setup {
background_colour = "#282c34",
}
vim.notify = require("notify")
end
}