Change to nightfox theme, set termguicolours earlier and set fallback background for notify to fix popup
This commit is contained in:
parent
61dd4d320f
commit
609181273f
|
@ -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")
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -17,6 +17,9 @@ require('packer').startup {
|
|||
use {
|
||||
'rcarriga/nvim-notify',
|
||||
config = function()
|
||||
require("notify").setup {
|
||||
background_colour = "#282c34",
|
||||
}
|
||||
vim.notify = require("notify")
|
||||
end
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue