Skip to content

Commit d5a51b5

Browse files
committed
feat(loading_animation): default to braille animation
Hopefully less distracting
1 parent c1b9568 commit d5a51b5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lua/opencode/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ M.defaults = {
8888
overrides = {},
8989
},
9090
loading_animation = {
91-
frames = { '·', '', '', '', '', '', '', '', '', '' },
91+
frames = { '', '', '', '', '', '', '', '', '', '' },
9292
},
9393
output = {
9494
rendering = {

lua/opencode/ui/loading_animation.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function M._get_frames()
2222
if ui_config and ui_config.loading_animation and ui_config.loading_animation.frames then
2323
return ui_config.loading_animation.frames
2424
end
25-
return { '·', '', '', '', '', '', '', '', '', '' }
25+
-- return { '·', '․', '•', '∙', '●', '⬤', '●', '∙', '•', '․' }
26+
return { '', '', '', '', '', '', '', '', '', '' }
2627
end
2728

2829
M.render = vim.schedule_wrap(function(windows)

0 commit comments

Comments
 (0)