This commit is contained in:
fz0x1 2024-09-29 16:08:33 +02:00
parent 9de3a488a7
commit dff4d40b46
9 changed files with 79 additions and 104 deletions

View file

@ -2,7 +2,7 @@ local config = {
options = {
icons_enabled = true,
theme = "auto",
globalstatus = true,
globalstatus = false,
disabled_filetypes = {
statusline = {},
winbar = {},
@ -19,46 +19,54 @@ local config = {
sections = {
lualine_a = { "mode" },
lualine_b = { "" },
lualine_x = { "diagnostics", "encoding", "fileformat", "filetype" },
lualine_x = { "diagnostics", "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" },
lualine_c = {},
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = { "filename" },
lualine_x = { "location" },
lualine_y = {},
lualine_z = {},
},
tabline = {},
winbar = {},
inactive_winbar = {},
extensions = {},
}
local function ins_left(component)
table.insert(config.sections.lualine_c, component)
end
-- local function ins_left(component)
-- table.insert(config.sections.lualine_c, component)
-- end
local function ins_right(component)
table.insert(config.sections.lualine_x, 1, component)
end
-- local function ins_right(component)
-- table.insert(config.sections.lualine_x, 1, component)
-- end
ins_right({
-- Lsp server name .
function()
local msg = "No Active Lsp"
-- local buf_ft = vim.api.nvim_buf_get_option(0, "filetype")
local buf_ft = vim.bo.filetype
local clients = vim.lsp.get_clients()
if next(clients) == nil then
return msg
end
for _, client in ipairs(clients) do
local filetypes = client.config.filetypes
if filetypes and vim.fn.index(filetypes, buf_ft) ~= -1 then
return client.name
end
end
return msg
end,
icon = " LSP:",
color = { fg = "#ff6b6b" },
})
-- ins_right({
-- -- Lsp server name .
-- function()
-- local msg = "No Active Lsp"
-- -- local buf_ft = vim.api.nvim_buf_get_option(0, "filetype")
-- local buf_ft = vim.bo.filetype
-- local clients = vim.lsp.get_clients()
-- if next(clients) == nil then
-- return msg
-- end
-- for _, client in ipairs(clients) do
-- local filetypes = client.config.filetypes
-- if filetypes and vim.fn.index(filetypes, buf_ft) ~= -1 then
-- return client.name
-- end
-- end
-- return msg
-- end,
-- icon = " LSP:",
-- color = { fg = "#ff6b6b" },
-- })
return {
"nvim-lualine/lualine.nvim",

View file

@ -1,3 +1,4 @@
-- TODO what is it for lol?
return {
"godlygeek/tabular",
lazy = false,

View file

@ -1,3 +1,4 @@
-- TODO need to test
return {
"preservim/tagbar",
lazy = false,