WIP: home: vim: LSP notify
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2023-08-07 10:51:01 +00:00
parent 5c9394f5e5
commit f08f24cdba
2 changed files with 4 additions and 0 deletions

View file

@ -89,6 +89,7 @@ in
dressing-nvim # Integrate native UI hooks with Telescope etc...
gitsigns-nvim # Fast git UI integration
nvim-notify # Better notification API
nvim-lsp-notify # LSP event notification, using nvim-notify
nvim-surround # Deal with pairs, now in Lua
telescope-fzf-native-nvim # Use 'fzf' fuzzy matching algorithm
telescope-lsp-handlers-nvim # Use 'telescope' for various LSP actions

View file

@ -1,4 +1,5 @@
local notify = require("notify")
local lsp_notify = require("lsp-notify")
notify.setup({
icons = {
@ -12,3 +13,5 @@ notify.setup({
})
vim.notify = notify
lsp_notify.setup({})