WIP: home: vim: LSP notify
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
5c9394f5e5
commit
f08f24cdba
|
@ -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
|
||||
|
|
|
@ -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({})
|
||||
|
|
Loading…
Reference in a new issue