From 4d7de1d055df566e7dcde67f89be2234f256d50a Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 13 Oct 2023 15:44:36 +0200 Subject: [PATCH] fix(nvim): ensure the dashboard ascii art is consistant --- nvim/lua/plugins/dashboard.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nvim/lua/plugins/dashboard.lua b/nvim/lua/plugins/dashboard.lua index ff1ae06..0997278 100644 --- a/nvim/lua/plugins/dashboard.lua +++ b/nvim/lua/plugins/dashboard.lua @@ -2,12 +2,12 @@ return { "glepnir/dashboard-nvim", event = "VimEnter", opts = function() - local logo = [[ - ▖ - ┌─╮╭─╮╭─╮▖ ▖▖▄▄▗▄ - │ │├─┘│ │▝▖▞ ▌▌ ▌ ▌ - ╵ ╵╰─╯╰─╯ ▝ ▘▘ ▘ ▘ - ]] + local logo = "\n" + .. " ▖\n" + .. "┌─╮╭─╮╭─╮▖ ▖▖▄▄▗▄ \n" + .. "│ │├─┘│ │▝▖▞ ▌▌ ▌ ▌\n" + .. "╵ ╵╰─╯╰─╯ ▝ ▘▘ ▘ ▘\n" + .. "\n" logo = string.rep("\n", 8) .. logo .. "\n\n"