This commit is contained in:
asep komarudin 2023-01-20 23:47:21 +07:00
parent 4fbc9cf758
commit 40c553beb7
2 changed files with 11 additions and 0 deletions

View file

@ -35,6 +35,7 @@
"nvim-cmp": { "branch": "main", "commit": "983453e32cb35533a119725883c04436d16c0120" }, "nvim-cmp": { "branch": "main", "commit": "983453e32cb35533a119725883c04436d16c0120" },
"nvim-colorizer.lua": { "branch": "master", "commit": "760e27df4dd966607e8fb7fd8b6b93e3c7d2e193" }, "nvim-colorizer.lua": { "branch": "master", "commit": "760e27df4dd966607e8fb7fd8b6b93e3c7d2e193" },
"nvim-lsp-installer": { "branch": "main", "commit": "17e0bfa5f2c8854d1636fcd036dc8284db136baa" }, "nvim-lsp-installer": { "branch": "main", "commit": "17e0bfa5f2c8854d1636fcd036dc8284db136baa" },
"nvim-lsp-notify": { "branch": "main", "commit": "148637f98316bb7cccfe736aba14ce4516577367" },
"nvim-lspconfig": { "branch": "master", "commit": "f11fdff7e8b5b415e5ef1837bdcdd37ea6764dda" }, "nvim-lspconfig": { "branch": "master", "commit": "f11fdff7e8b5b415e5ef1837bdcdd37ea6764dda" },
"nvim-navic": { "branch": "master", "commit": "7a2b823152fe4de65ee7925b0e32d26ed73bc57c" }, "nvim-navic": { "branch": "master", "commit": "7a2b823152fe4de65ee7925b0e32d26ed73bc57c" },
"nvim-notify": { "branch": "master", "commit": "bdd647f61a05c9b8a57c83b78341a0690e9c29d7" }, "nvim-notify": { "branch": "master", "commit": "bdd647f61a05c9b8a57c83b78341a0690e9c29d7" },

View file

@ -399,4 +399,14 @@ return {
-- require("user.chat_gpt") -- require("user.chat_gpt")
-- end, -- end,
}, },
-- LSP Notify
{
"mrded/nvim-lsp-notify",
dependencies = "rcarriga/nvim-notify",
config = function()
require("lsp-notify").setup({
notify = require("notify"),
})
end,
},
} }