summaryrefslogtreecommitdiff
path: root/after/plugin/lualine.lua
blob: 1d60a1725786922a987fac952fd873456bcc1ee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if vim.fn.has('gui_running') 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 = ''},
	  }
	}
end