add notify

This commit is contained in:
Robot 2023-12-18 18:14:06 -08:00
parent b3ea8e685e
commit 6e42bd3364
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ end
-- Set other options
local colorscheme = require("helpers.colorscheme")
vim.cmd.colorscheme(colorscheme)
vim.notify = require("notify")
vim.api.nvim_set_hl(0, "String", { fg = "#9ece6a", underline = false, bold = false })
vim.api.nvim_set_hl(0, "Type", { fg = "#00ff00", underline = false, bold = false })

View File

@ -42,6 +42,7 @@ return {
vim.keymap.set('n', '<leader>t', '<cmd>SymbolsOutline<cr>')
end
},
"rcarriga/nvim-notify",
}