From e9cb8deb2d294f5919ac7b6c9a717ea96efc60ad Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 16 Feb 2024 11:42:18 +0000 Subject: [PATCH] nvim: add notify plugin --- nvim/lua/thomas/core/options.lua | 2 ++ nvim/lua/thomas/plugins-setup.lua | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nvim/lua/thomas/core/options.lua b/nvim/lua/thomas/core/options.lua index 4021df4..16df6a8 100644 --- a/nvim/lua/thomas/core/options.lua +++ b/nvim/lua/thomas/core/options.lua @@ -24,3 +24,5 @@ opt.termguicolors = true opt.wrap = false opt.formatoptions = "cro" opt.backspace = "indent,eol,start" + +vim.notify = require("notify") diff --git a/nvim/lua/thomas/plugins-setup.lua b/nvim/lua/thomas/plugins-setup.lua index b006249..bcb33ef 100644 --- a/nvim/lua/thomas/plugins-setup.lua +++ b/nvim/lua/thomas/plugins-setup.lua @@ -38,11 +38,11 @@ return packer.startup(function(use) end, }) - -- git use("ellisonleao/gruvbox.nvim") use("sainnhe/gruvbox-material") use("kdheepak/lazygit.nvim") use("tpope/vim-fugitive") + use("rcarriga/nvim-notify") use("tpope/vim-markdown") use("f-person/git-blame.nvim") use("lewis6991/gitsigns.nvim") -- show line modifications on left hand side