2021-03-07 14:22:30 +00:00
|
|
|
|
local gl = require('galaxyline')
|
|
|
|
|
local gls = gl.section
|
|
|
|
|
gl.short_line_list = {'LuaTree','vista','dbui'}
|
|
|
|
|
|
|
|
|
|
local colors = {
|
|
|
|
|
bg = '#282c34',
|
|
|
|
|
line_bg = '#282c34',
|
|
|
|
|
fg = '#D8DEE9',
|
|
|
|
|
fg_green = '#65a380',
|
|
|
|
|
yellow = '#A3BE8C',
|
|
|
|
|
cyan = '#22262C',
|
|
|
|
|
darkblue = '#61afef',
|
2021-03-08 06:19:27 +00:00
|
|
|
|
green = '#BBE67E',
|
2021-03-07 14:22:30 +00:00
|
|
|
|
orange = '#FF8800',
|
|
|
|
|
purple = '#252930',
|
|
|
|
|
magenta = '#c678dd',
|
|
|
|
|
blue = '#22262C';
|
2021-03-08 06:19:27 +00:00
|
|
|
|
red = '#DF8890',
|
2021-03-07 14:22:30 +00:00
|
|
|
|
lightbg = '#3C4048',
|
|
|
|
|
nord = '#81A1C1',
|
2021-03-08 06:19:27 +00:00
|
|
|
|
greenYel = '#EBCB8B'
|
2021-03-07 14:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 05:24:53 +00:00
|
|
|
|
gls.left[1] = {
|
2021-03-08 06:19:27 +00:00
|
|
|
|
leftRounded = {
|
2021-03-08 05:24:53 +00:00
|
|
|
|
provider = function() return '' end,
|
2021-03-08 07:34:48 +00:00
|
|
|
|
highlight = { colors.nord, colors.bg }
|
2021-03-08 05:24:53 +00:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 14:22:30 +00:00
|
|
|
|
gls.left[2] = {
|
|
|
|
|
ViMode = {
|
|
|
|
|
provider = function()
|
2021-03-10 09:08:47 +00:00
|
|
|
|
return ' '
|
2021-03-07 14:22:30 +00:00
|
|
|
|
end,
|
2021-03-08 07:34:48 +00:00
|
|
|
|
highlight = {colors.bg,colors.nord},
|
2021-03-07 14:22:30 +00:00
|
|
|
|
separator = ' ',
|
|
|
|
|
separator_highlight = {colors.lightbg,colors.lightbg},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gls.left[3] ={
|
|
|
|
|
FileIcon = {
|
|
|
|
|
provider = 'FileIcon',
|
|
|
|
|
condition = buffer_not_empty,
|
|
|
|
|
highlight = {require('galaxyline.provider_fileinfo').get_file_icon_color,colors.lightbg},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gls.left[4] = {
|
|
|
|
|
FileName = {
|
|
|
|
|
provider = {'FileName','FileSize'},
|
|
|
|
|
condition = buffer_not_empty,
|
|
|
|
|
highlight = {colors.fg,colors.lightbg}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gls.left[5] = {
|
2021-03-08 06:19:27 +00:00
|
|
|
|
teech = {
|
2021-03-08 05:24:53 +00:00
|
|
|
|
provider = function() return '' end,
|
2021-03-08 06:19:27 +00:00
|
|
|
|
separator = ' ',
|
2021-03-08 05:24:53 +00:00
|
|
|
|
highlight = { colors.lightbg, colors.bg }
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 14:22:30 +00:00
|
|
|
|
local checkwidth = function()
|
|
|
|
|
local squeeze_width = vim.fn.winwidth(0) / 2
|
|
|
|
|
if squeeze_width > 40 then
|
|
|
|
|
return true
|
|
|
|
|
end
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[6] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
DiffAdd = {
|
|
|
|
|
provider = 'DiffAdd',
|
|
|
|
|
condition = checkwidth,
|
|
|
|
|
icon = ' ',
|
2021-03-08 06:19:27 +00:00
|
|
|
|
highlight = {colors.greenYel,colors.line_bg},
|
2021-03-07 14:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[7] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
DiffModified = {
|
|
|
|
|
provider = 'DiffModified',
|
|
|
|
|
condition = checkwidth,
|
|
|
|
|
icon = ' ',
|
|
|
|
|
highlight = {colors.orange,colors.line_bg},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[8] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
DiffRemove = {
|
|
|
|
|
provider = 'DiffRemove',
|
|
|
|
|
condition = checkwidth,
|
|
|
|
|
icon = ' ',
|
|
|
|
|
highlight = {colors.red,colors.line_bg},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[9] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
LeftEnd = {
|
|
|
|
|
provider = function() return ' ' end,
|
|
|
|
|
separator = ' ',
|
|
|
|
|
separator_highlight = {colors.line_bg,colors.line_bg},
|
|
|
|
|
highlight = {colors.line_bg,colors.line_bg}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[10] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
DiagnosticError = {
|
|
|
|
|
provider = 'DiagnosticError',
|
|
|
|
|
icon = ' ',
|
|
|
|
|
highlight = {colors.red,colors.bg}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[11] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
Space = {
|
|
|
|
|
provider = function () return ' ' end,
|
|
|
|
|
highlight = {colors.line_bg,colors.line_bg}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.left[12] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
DiagnosticWarn = {
|
|
|
|
|
provider = 'DiagnosticWarn',
|
|
|
|
|
icon = ' ',
|
|
|
|
|
highlight = {colors.blue,colors.bg},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 05:24:53 +00:00
|
|
|
|
gls.right[1] = {
|
2021-03-08 07:34:48 +00:00
|
|
|
|
GitIcon = {
|
|
|
|
|
provider = function() return ' ' end,
|
|
|
|
|
condition = require('galaxyline.provider_vcs').check_git_workspace,
|
|
|
|
|
highlight = {colors.green,colors.line_bg},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gls.right[2] = {
|
|
|
|
|
GitBranch = {
|
|
|
|
|
provider = 'GitBranch',
|
|
|
|
|
condition = require('galaxyline.provider_vcs').check_git_workspace,
|
|
|
|
|
highlight = {colors.green,colors.line_bg},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gls.right[3] = {
|
2021-03-08 06:19:27 +00:00
|
|
|
|
right_LeftRounded = {
|
2021-03-08 05:24:53 +00:00
|
|
|
|
provider = function() return '' end,
|
2021-03-08 07:34:48 +00:00
|
|
|
|
separator = ' ',
|
|
|
|
|
separator_highlight = {colors.bg,colors.bg},
|
|
|
|
|
highlight = { colors.red, colors.bg }
|
2021-03-08 05:24:53 +00:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.right[4] = {
|
|
|
|
|
SiMode = {
|
|
|
|
|
provider = function()
|
|
|
|
|
local alias = {
|
|
|
|
|
n = 'NORMAL',
|
|
|
|
|
i = 'INSERT',
|
|
|
|
|
c = 'COMMAND',
|
|
|
|
|
V = 'VISUAL',
|
|
|
|
|
[''] = 'VISUAL',
|
|
|
|
|
v = 'VISUAL',
|
|
|
|
|
R = 'REPLACE',
|
|
|
|
|
}
|
|
|
|
|
return alias[vim.fn.mode()]
|
|
|
|
|
end,
|
|
|
|
|
highlight = { colors.bg, colors.red },
|
|
|
|
|
},
|
2021-03-07 14:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 06:19:27 +00:00
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.right[5] = {
|
2021-03-07 14:22:30 +00:00
|
|
|
|
PerCent = {
|
|
|
|
|
provider = 'LinePercent',
|
|
|
|
|
separator = ' ',
|
2021-03-08 07:34:48 +00:00
|
|
|
|
separator_highlight = {colors.red,colors.red},
|
2021-03-07 14:22:30 +00:00
|
|
|
|
highlight = {colors.bg,colors.fg},
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-08 06:19:27 +00:00
|
|
|
|
|
2021-03-08 07:34:48 +00:00
|
|
|
|
gls.right[6] = {
|
2021-03-08 06:19:27 +00:00
|
|
|
|
rightRounded = {
|
|
|
|
|
provider = function() return '' end,
|
|
|
|
|
highlight = { colors.fg, colors.bg }
|
|
|
|
|
},
|
|
|
|
|
}
|