neovim-confs/lua/statusline/lua.lua

180 lines
3.4 KiB
Lua
Raw Normal View History

2021-03-07 15:22:30 +01: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 07:19:27 +01:00
green = '#BBE67E',
2021-03-07 15:22:30 +01:00
orange = '#FF8800',
purple = '#252930',
magenta = '#c678dd',
blue = '#22262C';
2021-03-08 07:19:27 +01:00
red = '#DF8890',
2021-03-07 15:22:30 +01:00
lightbg = '#3C4048',
nord = '#81A1C1',
2021-03-08 07:19:27 +01:00
greenYel = '#EBCB8B'
2021-03-07 15:22:30 +01:00
}
2021-03-08 06:24:53 +01:00
gls.left[1] = {
2021-03-08 07:19:27 +01:00
leftRounded = {
2021-03-08 06:24:53 +01:00
provider = function() return '' end,
2021-03-08 07:19:27 +01:00
highlight = { colors.green, colors.bg }
2021-03-08 06:24:53 +01:00
},
}
2021-03-07 15:22:30 +01:00
gls.left[2] = {
ViMode = {
provider = function()
2021-03-08 06:24:53 +01:00
return ' 󰀘 '
2021-03-07 15:22:30 +01:00
end,
2021-03-08 07:19:27 +01:00
highlight = {colors.bg,colors.green},
2021-03-07 15:22:30 +01: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 07:19:27 +01:00
teech = {
2021-03-08 06:24:53 +01:00
provider = function() return '' end,
2021-03-08 07:19:27 +01:00
separator = ' ',
2021-03-08 06:24:53 +01:00
highlight = { colors.lightbg, colors.bg }
},
}
gls.left[6] = {
2021-03-07 15:22:30 +01:00
GitIcon = {
provider = function() return '' end,
condition = require('galaxyline.provider_vcs').check_git_workspace,
2021-03-08 07:19:27 +01:00
highlight = {colors.red,colors.line_bg},
2021-03-07 15:22:30 +01:00
}
}
2021-03-08 06:24:53 +01:00
gls.left[7] = {
2021-03-07 15:22:30 +01:00
GitBranch = {
provider = 'GitBranch',
condition = require('galaxyline.provider_vcs').check_git_workspace,
2021-03-08 07:19:27 +01:00
highlight = {colors.red,colors.line_bg,'bold'},
2021-03-07 15:22:30 +01: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:19:27 +01:00
gls.left[8] = {
2021-03-07 15:22:30 +01:00
DiffAdd = {
provider = 'DiffAdd',
condition = checkwidth,
icon = '',
2021-03-08 07:19:27 +01:00
highlight = {colors.greenYel,colors.line_bg},
2021-03-07 15:22:30 +01:00
}
}
2021-03-08 07:19:27 +01:00
gls.left[9] = {
2021-03-07 15:22:30 +01:00
DiffModified = {
provider = 'DiffModified',
condition = checkwidth,
icon = '',
highlight = {colors.orange,colors.line_bg},
}
}
2021-03-08 07:19:27 +01:00
gls.left[10] = {
2021-03-07 15:22:30 +01:00
DiffRemove = {
provider = 'DiffRemove',
condition = checkwidth,
icon = '',
highlight = {colors.red,colors.line_bg},
}
}
gls.left[10] = {
LeftEnd = {
provider = function() return ' ' end,
separator = ' ',
separator_highlight = {colors.line_bg,colors.line_bg},
highlight = {colors.line_bg,colors.line_bg}
}
}
gls.left[11] = {
DiagnosticError = {
provider = 'DiagnosticError',
icon = '',
highlight = {colors.red,colors.bg}
}
}
gls.left[12] = {
Space = {
provider = function () return ' ' end,
highlight = {colors.line_bg,colors.line_bg}
}
}
gls.left[13] = {
DiagnosticWarn = {
provider = 'DiagnosticWarn',
icon = '',
highlight = {colors.blue,colors.bg},
}
}
2021-03-08 06:24:53 +01:00
gls.right[1] = {
2021-03-08 07:19:27 +01:00
right_LeftRounded = {
2021-03-08 06:24:53 +01:00
provider = function() return '' end,
2021-03-08 07:19:27 +01:00
highlight = { colors.nord, colors.bg }
2021-03-08 06:24:53 +01:00
},
}
2021-03-08 07:19:27 +01:00
2021-03-08 06:24:53 +01:00
gls.right[2]= {
2021-03-07 15:22:30 +01:00
FileFormat = {
provider = 'FileFormat',
2021-03-08 07:19:27 +01:00
highlight = {colors.bg,colors.nord},
2021-03-07 15:22:30 +01:00
}
}
2021-03-08 07:19:27 +01:00
2021-03-07 15:22:30 +01:00
gls.right[3] = {
PerCent = {
provider = 'LinePercent',
separator = ' ',
2021-03-08 07:19:27 +01:00
separator_highlight = {colors.nord,colors.nord},
2021-03-07 15:22:30 +01:00
highlight = {colors.bg,colors.fg},
}
}
2021-03-08 07:19:27 +01:00
gls.right[4] = {
rightRounded = {
provider = function() return '' end,
highlight = { colors.fg, colors.bg }
},
}