summaryrefslogtreecommitdiff
path: root/after/plugin/lualine.lua
blob: 0e3427d3279a59322d470737fb071f7c5ae81b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if vim.fn.has('gui_running') == 1 then
	require('lualine').setup {
		options = { 
			component_separators = { left = '', right = ''},
			section_separators = { left = '', right = ''},
			theme = require('lualine.themes.powerline'),
	  }
	}
else
	require('lualine').setup {
		options = { 
			component_separators = { left = '', right = ''},
			section_separators = { left = '', right = ''},
			theme = require('lualine.themes.auto'),
	  }
	}
end