some changes

This commit is contained in:
pika 2025-06-22 18:32:24 +02:00
parent 1dd2406de3
commit e2e9bd2504
4 changed files with 196 additions and 122 deletions

View file

@ -223,129 +223,119 @@ return {
-- ╭────────────────────────────────╮
-- │ lualine - another bar for nvim │
-- ╰────────────────────────────────╯
{
"nvim-lualine/lualine.nvim",
opts = {
options = {
theme = bubbles_theme,
component_separators = "",
section_separators = { left = "", right = "" },
},
sections = {
lualine_a = { { "mode", separator = { left = "" }, right_padding = 4 } },
lualine_b = { "filename", "branch" },
lualine_c = {
"%=",
"cwd",
},
lualine_x = {},
lualine_y = { "filetype", "progress" },
lualine_z = {
{ "location", separator = { right = "" }, left_padding = 4 },
},
},
inactive_sections = {
lualine_a = { "filename" },
lualine_b = {},
lualine_c = {},
lualine_x = {},
lualine_y = {},
lualine_z = { "location" },
},
tabline = {},
extensions = {},
},
},
-- {
-- "nvim-lualine/lualine.nvim",
-- opts = {
-- options = {
-- theme = bubbles_theme,
-- component_separators = "",
-- section_separators = { left = "", right = "" },
-- },
-- sections = {
-- lualine_a = { { "mode", separator = { left = "" }, right_padding = 4 } },
-- lualine_b = { "filename", "branch" },
-- lualine_c = {
-- "%=",
-- "cwd",
-- },
-- lualine_x = {},
-- lualine_y = { "filetype", "progress" },
-- lualine_z = {
-- { "location", separator = { right = "" }, left_padding = 4 },
-- },
-- },
-- inactive_sections = {
-- lualine_a = { "filename" },
-- lualine_b = {},
-- lualine_c = {},
-- lualine_x = {},
-- lualine_y = {},
-- lualine_z = { "location" },
-- },
-- tabline = {},
-- extensions = {},
-- },
-- },
-- ╭──────────────────────────────╮
-- │ slimline - nice bar for nvim │
-- ╰──────────────────────────────╯
-- {
-- "sschleemilch/slimline.nvim",
-- opts = {
-- bold = true, -- makes primary parts and mode bold
-- verbose_mode = false, -- Mode as single letter or as a word
-- style = "bg", -- or "fg". Whether highlights should be applied to bg or fg of components
-- mode_follow_style = true, -- Whether the mode color components should follow the style option
-- spaces = {
-- components = "─",
-- left = "─",
-- right = "─",
-- },
-- configs = {
-- path = {
-- hl = {
-- primary = "Define",
-- },
-- },
-- git = {
-- hl = {
-- primary = "Function",
-- },
-- },
-- diagnostics = {
-- hl = {
-- primary = "Statement",
-- },
-- },
-- filetype_lsp = {
-- hl = {
-- primary = "String",
-- },
-- },
-- },
-- components = { -- Choose components and their location
-- left = {
-- "mode",
-- "progress",
-- -- "path",
-- -- "git",
-- },
-- center = {
-- "path",
-- "git",
-- },
-- right = {
-- "diagnostics",
-- "filetype_lsp",
-- "progress",
-- },
-- },
-- sep = {
-- hide = {
-- first = false, -- hides the first separator
-- last = false, -- hides the last separator
-- },
-- left = "", -- left separator of components
-- right = "", -- right separator of components
-- },
-- hl = {
-- modes = {
-- normal = "Type", -- highlight base of modes
-- insert = "Function",
-- pending = "Boolean",
-- visual = "Keyword",
-- command = "String",
-- },
-- base = "Comment", -- highlight of everything in in between components
-- primary = "Normal", -- highlight of primary parts (e.g. filename)
-- secondary = "Comment", -- highlight of secondary parts (e.g. filepath)
-- },
-- icons = {
-- diagnostics = {
-- ERROR = " ",
-- WARN = " ",
-- HINT = " ",
-- INFO = " ",
-- },
-- git = {
-- branch = "",
-- },
-- folder = " ",
-- lines = " ",
-- },
-- },
-- },
{
"sschleemilch/slimline.nvim",
-- INFO: pure
--
-- opts = {
-- style = "fg",
-- bold = true,
-- hl = {
-- secondary = "Comment",
-- },
-- configs = {
-- mode = {
-- hl = {
-- normal = "Comment",
-- insert = "Normal",
-- pending = "Normal",
-- visual = "Normal",
-- command = "Normal",
-- },
-- },
-- path = {
-- hl = {
-- primary = "Label",
-- },
-- },
-- git = {
-- hl = {
-- primary = "Function",
-- },
-- },
-- filetype_lsp = {
-- hl = {
-- primary = "String",
-- },
-- },
-- },
-- },
-- INFO: rainbow
--
opts = {
style = "bg",
configs = {
path = {
hl = {
primary = "Define",
},
},
git = {
hl = {
primary = "Function",
},
},
filetype_lsp = {
hl = {
primary = "String",
},
},
},
},
-- INFO: slashes
--
-- opts = {
-- spaces = {
-- components = "",
-- left = "",
-- right = "",
-- },
-- sep = {
-- hide = {
-- first = true,
-- last = true,
-- },
-- left = "",
-- right = "",
-- },
-- },
},
-- ╭────────────────────────────────────────╮
-- │ which key - to know what to press next │