aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/plugins/lualine.lua
blob: 46ad4f02004aca061da1842226939585b0803333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require("lualine").setup({
  options = {
    theme = "catppuccin",
    component_separators = { left = "»", right = "«" },
    section_separators = "",
    icons_enabled = false,
    globalstatus = true,
  },
  sections = {
    lualine_a = {
      { "mode", color = { gui = "bold" } },
    },
    lualine_b = {
      { "branch" },
      { "diff", colored = false },
    },
    lualine_c = {
      { "filename", file_status = true },
      { "diagnostics" },
    },
    lualine_x = {
      { "filetype" },
      { "fileformat", icons_enabled = false },
      { "encoding" },
    },
    lualine_y = { 
      { "progress" },
    },
    lualine_z = {
      { "location", color = { gui = "bold" } },
    },
  },
  extensions = { "quickfix", "nvim-tree" },
})