nvim: add notify plugin
This commit is contained in:
parent
fb4d272b6a
commit
e9cb8deb2d
2 changed files with 3 additions and 1 deletions
|
@ -24,3 +24,5 @@ opt.termguicolors = true
|
||||||
opt.wrap = false
|
opt.wrap = false
|
||||||
opt.formatoptions = "cro"
|
opt.formatoptions = "cro"
|
||||||
opt.backspace = "indent,eol,start"
|
opt.backspace = "indent,eol,start"
|
||||||
|
|
||||||
|
vim.notify = require("notify")
|
||||||
|
|
|
@ -38,11 +38,11 @@ return packer.startup(function(use)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- git
|
|
||||||
use("ellisonleao/gruvbox.nvim")
|
use("ellisonleao/gruvbox.nvim")
|
||||||
use("sainnhe/gruvbox-material")
|
use("sainnhe/gruvbox-material")
|
||||||
use("kdheepak/lazygit.nvim")
|
use("kdheepak/lazygit.nvim")
|
||||||
use("tpope/vim-fugitive")
|
use("tpope/vim-fugitive")
|
||||||
|
use("rcarriga/nvim-notify")
|
||||||
use("tpope/vim-markdown")
|
use("tpope/vim-markdown")
|
||||||
use("f-person/git-blame.nvim")
|
use("f-person/git-blame.nvim")
|
||||||
use("lewis6991/gitsigns.nvim") -- show line modifications on left hand side
|
use("lewis6991/gitsigns.nvim") -- show line modifications on left hand side
|
||||||
|
|
Loading…
Add table
Reference in a new issue