Updated config
This commit is contained in:
@@ -1,16 +1,17 @@
|
|||||||
--- @type LazyPluginSpec
|
--- @type LazyPluginSpec
|
||||||
return {
|
return {
|
||||||
"j-hui/fidget.nvim",
|
"j-hui/fidget.nvim",
|
||||||
tag = "legacy",
|
|
||||||
event = "LspAttach",
|
event = "LspAttach",
|
||||||
config = function()
|
config = function()
|
||||||
vim.api.nvim_set_hl(0, "FidgetTitle", { link = "DiagnosticText" })
|
vim.api.nvim_set_hl(0, "FidgetTitle", { link = "DiagnosticText" })
|
||||||
vim.api.nvim_set_hl(0, "FidgetTask", { link = "DiagnosticInfo" })
|
vim.api.nvim_set_hl(0, "FidgetTask", { link = "DiagnosticInfo" })
|
||||||
|
|
||||||
require("fidget").setup({
|
require("fidget").setup({
|
||||||
window = {
|
notification = {
|
||||||
blend = 0,
|
window = {
|
||||||
relative = "editor",
|
winblend = 0,
|
||||||
|
relative = "editor",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|||||||
@@ -56,6 +56,9 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
lsp = {
|
lsp = {
|
||||||
|
progress = {
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
override = {
|
override = {
|
||||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||||
["vim.lsp.util.stylize_markdown"] = true,
|
["vim.lsp.util.stylize_markdown"] = true,
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
--- @type LazyPluginSpec
|
--- @type LazyPluginSpec
|
||||||
return {
|
return {
|
||||||
"rcarriga/nvim-notify",
|
"rcarriga/nvim-notify",
|
||||||
|
enabled = false,
|
||||||
config = function()
|
config = function()
|
||||||
local notify = require("notify")
|
local notify = require("notify")
|
||||||
|
|
||||||
|
|||||||
11
lua/taken/plugins/snacks.lua
Normal file
11
lua/taken/plugins/snacks.lua
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
return {
|
||||||
|
"folke/snacks.nvim",
|
||||||
|
config = function()
|
||||||
|
local snacks = require("snacks")
|
||||||
|
|
||||||
|
snacks.setup({
|
||||||
|
notifier = {},
|
||||||
|
scroll = {},
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user