From 1981f73d68453843a84c16c41c8f06164b3cd2cb Mon Sep 17 00:00:00 2001 From: Kirk Easterson Date: Fri, 20 Sep 2024 09:58:02 +0200 Subject: [PATCH] feat(nvim): use different nvim logo in alpha --- nvim/.config/nvim/lua/art.lua | 30 +++++++++---------- .../nvim/lua/kirk/plugins/ui/alpha.lua | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/nvim/.config/nvim/lua/art.lua b/nvim/.config/nvim/lua/art.lua index f833dc54..29d195b0 100644 --- a/nvim/.config/nvim/lua/art.lua +++ b/nvim/.config/nvim/lua/art.lua @@ -27,13 +27,13 @@ M.neovim = { "██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║", "╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝", }, - -- { - -- " _/ _/ _/_/_/_/ _/_/ _/ _/ _/_/_/ _/ _/ ", - -- " _/_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/_/ ", - -- " _/ _/ _/ _/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ", - -- " _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ ", - -- "_/ _/ _/_/_/_/ _/_/ _/ _/_/_/ _/ _/ ", - -- }, + { + " _/ _/ _/_/_/_/ _/_/ _/ _/ _/_/_/ _/ _/ ", + " _/_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/_/ ", + " _/ _/ _/ _/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ", + " _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ ", + "_/ _/ _/_/_/_/ _/_/ _/ _/_/_/ _/ _/ ", + }, { "oooo oooo ooooooooooo ooooooo ooooo oooo ooooo oooo oooo ", " 8888o 88 888 88 o888 888o 888 88 888 8888o 888 ", @@ -41,14 +41,14 @@ M.neovim = { " 88 8888 888 oo 888o o888 88888 888 88 888 88 ", "o88o 88 o888ooo8888 88ooo88 888 o888o o88o 8 o88o ", }, - -- { - -- " _/\\/\\____/\\/\\__/\\/\\/\\/\\/\\/\\____/\\/\\/\\/\\____/\\/\\____/\\/\\__/\\/\\/\\/\\__/\\/\\______/\\/\\_", - -- " _/\\/\\/\\__/\\/\\__/\\____________/\\/\\____/\\/\\__/\\/\\____/\\/\\____/\\/\\____/\\/\\/\\__/\\/\\/\\_ ", - -- " _/\\/\\/\\/\\/\\/\\__/\\/\\/\\/\\/\\____/\\/\\____/\\/\\__/\\/\\____/\\/\\____/\\/\\____/\\/\\/\\/\\/\\/\\/\\_ ", - -- " _/\\/\\__/\\/\\/\\__/\\/\\__________/\\/\\____/\\/\\____/\\/\\/\\/\\______/\\/\\____/\\/\\__/\\__/\\/\\_ ", - -- " _/\\/\\____/\\/\\__/\\/\\/\\/\\/\\/\\____/\\/\\/\\/\\________/\\/\\______/\\/\\/\\/\\__/\\/\\______/\\/\\_ ", - -- "__________________________________________________________________________________ ", - -- }, + { + " _/\\/\\____/\\/\\__/\\/\\/\\/\\/\\/\\____/\\/\\/\\/\\____/\\/\\____/\\/\\__/\\/\\/\\/\\__/\\/\\______/\\/\\_", + " _/\\/\\/\\__/\\/\\__/\\____________/\\/\\____/\\/\\__/\\/\\____/\\/\\____/\\/\\____/\\/\\/\\__/\\/\\/\\_ ", + " _/\\/\\/\\/\\/\\/\\__/\\/\\/\\/\\/\\____/\\/\\____/\\/\\__/\\/\\____/\\/\\____/\\/\\____/\\/\\/\\/\\/\\/\\/\\_ ", + " _/\\/\\__/\\/\\/\\__/\\/\\__________/\\/\\____/\\/\\____/\\/\\/\\/\\______/\\/\\____/\\/\\__/\\__/\\/\\_ ", + " _/\\/\\____/\\/\\__/\\/\\/\\/\\/\\/\\____/\\/\\/\\/\\________/\\/\\______/\\/\\/\\/\\__/\\/\\______/\\/\\_ ", + "__________________________________________________________________________________ ", + }, } M.neovim_main = M.neovim[1] diff --git a/nvim/.config/nvim/lua/kirk/plugins/ui/alpha.lua b/nvim/.config/nvim/lua/kirk/plugins/ui/alpha.lua index 3d46de3e..ee84d3c5 100644 --- a/nvim/.config/nvim/lua/kirk/plugins/ui/alpha.lua +++ b/nvim/.config/nvim/lua/kirk/plugins/ui/alpha.lua @@ -13,7 +13,7 @@ return { local dashboard = require("alpha.themes.dashboard") - local neovimlogo = art.neovim[1] + local neovimlogo = art.neovim[4] local asciiart = util.asciiart_cpad(art.triangle_box, vim.fn.strdisplaywidth(neovimlogo[1])) local fortune = require("alpha.fortune")