updates for notifcations loading first and termgui colors added
This commit is contained in:
parent
eecea2aa7b
commit
53fc7b700d
3 changed files with 7 additions and 1 deletions
|
@ -56,3 +56,6 @@ vim.opt.diffopt:append("linematch:20")
|
||||||
-- Set screen mode
|
-- Set screen mode
|
||||||
vim.o.noequalalways = true
|
vim.o.noequalalways = true
|
||||||
vim.o.equalalways = false
|
vim.o.equalalways = false
|
||||||
|
|
||||||
|
-- enable colors for opacity changes
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
return {
|
return {
|
||||||
"Pocco81/auto-save.nvim",
|
"Pocco81/auto-save.nvim",
|
||||||
event = "BufEnter",
|
event = "BufEnter",
|
||||||
|
init = function()
|
||||||
|
vim.notify("test")
|
||||||
|
end,
|
||||||
opts = {
|
opts = {
|
||||||
trigger_events = { "InsertLeave", "TextChanged", "TextChangedI", "BufLeave" },
|
trigger_events = { "InsertLeave", "TextChanged", "TextChangedI", "BufLeave" },
|
||||||
condition = function(buf)
|
condition = function(buf)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
"rcarriga/nvim-notify",
|
"rcarriga/nvim-notify",
|
||||||
event = "VeryLazy",
|
lazy = false,
|
||||||
opts = {
|
opts = {
|
||||||
top_down = false,
|
top_down = false,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue