aboutsummaryrefslogtreecommitdiff
path: root/lua/user/lualine.lua
blob: 22c79002cf97329736a9c58fb07649fa5c102b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local status_ok, lualine = pcall(require, "lualine")
if not status_ok then
  return
end

lualine.setup {
  sections = {
	lualine_c = {
	  {
		'filename',
		path=1,
		file_status=false,
	  },
	},
  },
  options = {
    theme = 'ayu',
  },
}