2023-10-20 03:32:27 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.sections = {
|
2023-10-20 03:32:59 +00:00
|
|
|
lualine_a = {
|
|
|
|
function()
|
|
|
|
return vim.fn['ctrlspace#context#Configuration']().Symbols.CS
|
|
|
|
end,
|
|
|
|
},
|
2023-10-20 03:32:27 +00:00
|
|
|
lualine_b = { 'ctrlspace#api#StatuslineModeSegment' },
|
|
|
|
lualine_y = { 'ctrlspace#api#StatuslineTabSegment' },
|
2023-10-20 03:32:59 +00:00
|
|
|
lualine_z = {
|
|
|
|
function()
|
|
|
|
return 'CtrlSpace'
|
|
|
|
end,
|
|
|
|
},
|
2023-10-20 03:32:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
M.filetypes = { 'ctrlspace' }
|
|
|
|
|
|
|
|
return M
|