Skip to content

Commit

Permalink
feat(nvim): use different nvim logo in alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
KirkEasterson committed Sep 20, 2024
1 parent 1922927 commit 1981f73
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions nvim/.config/nvim/lua/art.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,28 @@ M.neovim = {
"██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
"╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
},
-- {
-- " _/ _/ _/_/_/_/ _/_/ _/ _/ _/_/_/ _/ _/ ",
-- " _/_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/_/ ",
-- " _/ _/ _/ _/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ",
-- " _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ ",
-- "_/ _/ _/_/_/_/ _/_/ _/ _/_/_/ _/ _/ ",
-- },
{
" _/ _/ _/_/_/_/ _/_/ _/ _/ _/_/_/ _/ _/ ",
" _/_/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/_/ ",
" _/ _/ _/ _/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ",
" _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ ",
"_/ _/ _/_/_/_/ _/_/ _/ _/_/_/ _/ _/ ",
},
{
"oooo oooo ooooooooooo ooooooo ooooo oooo ooooo oooo oooo ",
" 8888o 88 888 88 o888 888o 888 88 888 8888o 888 ",
" 88 888o88 888ooo8 888 888 888 88 888 88 888o8 88 ",
" 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]
Expand Down
2 changes: 1 addition & 1 deletion nvim/.config/nvim/lua/kirk/plugins/ui/alpha.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 1981f73

Please sign in to comment.