This is the first commit that actually adds files to the repo. Yes it's a bad commit but now the major features are here
54 lines
748 B
Lua
54 lines
748 B
Lua
local ok, lualine = pcall(require,"lualine")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
lualine.setup {
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = 'gruvbox',
|
|
component_separators = {
|
|
left = '',
|
|
right = ''
|
|
},
|
|
section_separators = {
|
|
left = '',
|
|
right = ''
|
|
},
|
|
disabled_filetypes = {},
|
|
always_divide_middle = true,
|
|
globalstatus = true,
|
|
},
|
|
sections = {
|
|
lualine_a = {
|
|
'mode',
|
|
'spell_status',
|
|
},
|
|
lualine_b = {
|
|
'branch',
|
|
'diff',
|
|
'diagnostics'
|
|
},
|
|
lualine_c = {
|
|
'filename',
|
|
},
|
|
lualine_x = {
|
|
'encoding',
|
|
'fileformat',
|
|
'filetype',
|
|
},
|
|
lualine_y = {
|
|
'progress',
|
|
'searchcount'
|
|
},
|
|
lualine_z = {
|
|
'location'
|
|
}
|
|
},
|
|
tabline = {},
|
|
extensions = {
|
|
'neo-tree',
|
|
'quickfix'
|
|
}
|
|
}
|