dotfiles/.config/nvim/lua/plugins/ui.lua

85 lines
2.1 KiB
Lua
Raw Normal View History

2024-03-03 22:20:57 +01:00
local hooks = require("ibl.hooks")
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
2024-03-18 17:47:39 +01:00
local colorbuddy = require("colorbuddy")
local Color = colorbuddy.Color
local colors = colorbuddy.colors
local Group = colorbuddy.Group
local groups = colorbuddy.groups
local styles = colorbuddy.styles
2024-03-03 22:20:57 +01:00
Color.new("IndentBlanklineIndent", "#1e2835", styles.nocombine)
Group.new("IndentBlanklineIndent1", colors.IndentBlanklineIndent:light(0.1))
Group.new("IndentBlanklineIndent2", colors.IndentBlanklineIndent:light(0.15))
Group.new("IndentBlanklineIndent3", colors.IndentBlanklineIndent:light(0.2))
Group.new("IndentBlanklineIndent4", colors.IndentBlanklineIndent:light(0.25))
Group.new("IndentBlanklineIndent5", colors.IndentBlanklineIndent:light(0.3))
Group.new("IndentBlanklineIndent6", colors.IndentBlanklineIndent:light(0.35))
Color.new("IndentBlanklineContextChar", "#f0a972", styles.nocombine)
Group.new("IndentBlanklineContextChar", colors.IndentBlanklineContextChar)
end)
2023-09-18 13:53:33 +02:00
return {
{
"echasnovski/mini.indentscope",
opts = {
draw = {
delay = 25, -- ms
},
},
},
2024-03-09 18:34:31 +01:00
{
"akinsho/bufferline.nvim",
enabled = false,
},
2023-09-18 13:53:33 +02:00
{
"lukas-reineke/indent-blankline.nvim",
2024-03-03 22:20:57 +01:00
dependencies = {
{ "tjdevries/colorbuddy.nvim" },
},
main = "ibl",
2023-09-18 13:53:33 +02:00
opts = {
2023-10-02 21:39:32 +02:00
indent = {
char = "",
tab_char = "",
highlight = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
"IndentBlanklineIndent3",
"IndentBlanklineIndent4",
"IndentBlanklineIndent5",
"IndentBlanklineIndent6",
},
},
scope = {
enabled = true,
show_start = false,
char = "",
highlight = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
"IndentBlanklineIndent3",
"IndentBlanklineIndent4",
"IndentBlanklineIndent5",
"IndentBlanklineIndent6",
},
2023-09-18 13:53:33 +02:00
},
},
},
2024-03-03 22:20:57 +01:00
{
"rcarriga/nvim-notify",
opts = {
timeout = 1500,
background_colour = "#1e2835",
},
},
{
"nvim-lualine/lualine.nvim",
enabled = false,
2024-03-03 22:20:57 +01:00
},
2023-09-18 13:53:33 +02:00
}