remove noice, it is not nice... | remove rustacean, just use rust_analyzer by itself it is fine as is | add fidget for lsp progress

This commit is contained in:
RingOfStorms (Josh) 2024-05-20 01:40:45 -05:00
parent 77248911bc
commit d822cd7b6d
9 changed files with 60 additions and 110 deletions

View file

@ -1,12 +1,25 @@
return {
"rcarriga/nvim-notify",
lazy = false,
priority = 150,
opts = {
top_down = false,
timeout = 5000,
},
config = function(_, opts)
require("notify").setup(opts)
end,
"rcarriga/nvim-notify",
lazy = false,
priority = 150,
opts = {
top_down = false,
timeout = 5000,
},
config = function(_, opts)
require("notify").setup(opts)
vim.notify = require("notify")
U.safeRequire("telescope", function(t)
t.load_extension("notify")
end)
end,
keys = {
{
"<leader>fn",
"<cmd>Telescope notify<cr>",
desc = "Telescope search notifications",
mode = { "n", "v", "x" },
},
},
}