summaryrefslogtreecommitdiff
path: root/lua/plugins/lualine.lua
blob: 0821711960fd786a79adc557ab0df1e221e70e76 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
return {
  'nvim-lualine/lualine.nvim',
  dependencies = {
    'nvim-tree/nvim-web-devicons',
    'rmagatti/auto-session',
  },
  opts = {
    options = {
      theme = 'nord',
      icons_enabled = true,
      component_separators = { left = '', right = '' },
      section_separators = { left = '', right = '' },
    },
    sections = {
      lualine_a = { 'mode' },
      lualine_b = { require('auto-session.lib').current_session_name, 'branch', 'diff', 'diagnostics' },
      lualine_c = { 'filename' },
      lualine_x = { 'encoding', 'fileformat', 'filetype' },
      lualine_y = { 'progress' },
      lualine_z = { 'location' },
    },
    inactive_sections = {
      lualine_a = {},
      lualine_b = {},
      lualine_c = { 'filename' },
      lualine_x = { 'location' },
      lualine_y = {},
      lualine_z = {}
    },
    -- Very basic tabline support, for more
    -- https://github.com/kdheepak/tabline.nvim
    -- as it supports binding buffers to tabs so they can work as workspaces
    tabline = {
      lualine_a = { 'buffers' },
      lualine_b = {},
      lualine_c = {},
      lualine_x = {},
      lualine_y = {},
      lualine_z = { 'tabs' },
    },
    -- Window specific bar, appears below tabline
    -- and inside window
    winbar = {},
    inactive_winbar = {},
    extensions = { 'neo-tree' },
  },
}