nvim/lua/plugins/ui.lua

70 lines
1.3 KiB
Lua
Raw Normal View History

2026-03-01 18:53:20 +01:00
return {
{
2026-03-25 10:48:29 +01:00
"vyfor/cord.nvim",
---@type CordConfig
opts = {
display = {
theme = "atom",
},
editor = { tooltip = "ur gay x3" },
},
},
{
"tinted-theming/tinted-vim",
lazy = false,
2026-03-25 10:48:29 +01:00
priority = 1000,
2026-03-01 18:53:20 +01:00
},
2026-03-25 10:48:29 +01:00
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
---@module "ibl"
---@type ibl.config
opts = {
scope = { enabled = true },
},
},
{
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons", "RRethy/base16-nvim" },
opts = {
options = {
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
},
sections = {
lualine_a = { "mode" },
lualine_b = { "diagnostics" },
lualine_c = { "filename", "branch", "navic" },
lualine_x = { "lsp_status", "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" },
},
},
},
2026-03-01 18:53:20 +01:00
{
"nvimdev/lspsaga.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter", -- for syntax highlighting inside the popup
"nvim-tree/nvim-web-devicons", -- for pretty icons
},
opts = {
symbol_in_winbar = { enable = true },
2026-03-17 20:43:35 +01:00
lightbulb = {
enable = true,
sign = false,
},
2026-03-01 18:53:20 +01:00
hover = {
max_width = 0.6,
open_link = "gx",
open_browser = "!google-chrome",
},
},
},
{
"akinsho/bufferline.nvim",
opts = {},
},
}