diff options
Diffstat (limited to 'lua/plugins/ui.lua')
| -rw-r--r-- | lua/plugins/ui.lua | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua index 493c426..b2094eb 100644 --- a/lua/plugins/ui.lua +++ b/lua/plugins/ui.lua @@ -9,6 +9,25 @@ return { component_separators = { left = "|", right = "|" }, section_separators = {}, }, + sections = { + lualine_a = { + { + "mode", + fmt = function(mode) + return ({ + NORMAL = "(。•ᴗ•。)", + INSERT = "(づ。◕‿‿◕。)づ", + VISUAL = "(≧◡≦)", + ["V-LINE"] = "(≧▿≦)", + ["V-BLOCK"] = "(☆ω☆)", + COMMAND = "( ̄ω ̄)", + REPLACE = "(;ω;)", + TERMINAL = "(^▽^)", + })[mode] or mode + end, + }, + }, + }, }) end, }, @@ -39,8 +58,8 @@ return { chars = { horizontal_line = "─", vertical_line = "│", - left_top = "╭", - left_bottom = "╰", + left_top = "┌", + left_bottom = "└", right_arrow = "─", }, textobject = "", |
