Linux configuration stuffs
1return {
2 "nvim-lualine/lualine.nvim",
3 lazy = false,
4 opts = {
5 options = {
6 component_separators = { left = "", right = "" },
7 section_separators = { left = "", right = "" },
8 disabled_filetypes = { "NvimTree", "alpha", "dashboard", "Outline" },
9 theme = "catppuccin",
10 },
11 sections = {
12 lualine_b = {
13 {
14 "diagnostics",
15 sources = { "nvim_diagnostic" },
16 sections = { "error", "warn" },
17 symbols = { error = " ", warn = " ", info = " ", hint = " " },
18 always_visible = true,
19 },
20 },
21 lualine_c = {},
22 lualine_x = { "lsp_status" },
23 },
24 },
25}