starter/lua/plugins/override/visualize.lua

54 lines
793 B
Lua
Raw Normal View History

2024-07-04 15:22:44 +08:00
return {
{
"folke/noice.nvim",
opts = {
presets = {
bottom_search = false,
lsp_doc_border = true,
},
lsp = {
hover = {
silent = true,
},
},
},
},
2024-10-30 14:48:39 +08:00
{
"akinsho/bufferline.nvim",
opts = {
options = {
separator_style = "slope",
hover = {
enabled = true,
delay = 200,
reveal = { "close" },
},
indicator = {
style = "underline",
},
},
},
},
2024-07-04 15:22:44 +08:00
-- {
-- "nvim-lualine/lualine.nvim",
2024-07-16 14:35:47 +08:00
-- dependencies = {
-- "rmagatti/auto-session",
-- },
2024-07-04 15:22:44 +08:00
-- opts = {
-- sections = {
-- lualine_z = {
-- require("auto-session.lib").current_session_name,
-- },
-- },
-- },
-- },
{
"rcarriga/nvim-notify",
opts = {
timeout = 2500,
fps = 170,
stages = "fade_in_slide_out",
},
},
}