aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/kickstart/plugins/mini.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/kickstart/plugins/mini.lua b/lua/kickstart/plugins/mini.lua
index 7c5026d..94de556 100644
--- a/lua/kickstart/plugins/mini.lua
+++ b/lua/kickstart/plugins/mini.lua
@@ -24,11 +24,11 @@ return {
statusline.setup()
-- You can configure sections in the statusline by overriding their
- -- default behavior. For example, here we disable the section for
- -- cursor information because line numbers are already enabled
+ -- default behavior. For example, here we set the section for
+ -- cursor location to LINE:COLUMN
---@diagnostic disable-next-line: duplicate-set-field
statusline.section_location = function()
- return ''
+ return '%2l:%-2v'
end
-- ... and there is more!