Skip to content

Commit

Permalink
skull
Browse files Browse the repository at this point in the history
  • Loading branch information
danwetherald committed May 24, 2022
1 parent 4af8ed8 commit 581ed14
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions nvim/lua/custom/plugins/dashboard-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@ local M = {}

M.setup = function()
vim.g.dashboard_default_executive = 'telescope'
vim.cmd([[ let g:dashboard_custom_header = [
\' ███████████████████████████ ',
\' ███████▀▀▀░░░░░░░▀▀▀███████ ',
\' ████▀░░░░░░░░░░░░░░░░░▀████ ',
\' ███│░░░░░░░░░░░░░░░░░░░│███ ',
\' ██▌│░░░░░░░░░░░░░░░░░░░│▐██ ',
\' ██░└┐░░░░░░░░░░░░░░░░░┌┘░██ ',
\' ██░░└┐░░░░░░░░░░░░░░░┌┘░░██ ',
\' ██░░┌┘▄▄▄▄▄░░░░░▄▄▄▄▄└┐░░██ ',
\' ██▌░│██████▌░░░▐██████│░▐██ ',
\' ███░│▐███▀▀░░▄░░▀▀███▌│░███ ',
\' ██▀─┘░░░░░░░▐█▌░░░░░░░└─▀██ ',
\' ██▄░░░▄▄▄▓░░▀█▀░░▓▄▄▄░░░▄██ ',
\' ████▄─┘██▌░░░░░░░▐██└─▄████ ',
\' █████░░▐█─┬┬┬┬┬┬┬─█▌░░█████ ',
\' ████▌░░░▀┬┼┼┼┼┼┼┼┬▀░░░▐████ ',
\' █████▄░░░└┴┴┴┴┴┴┴┘░░░▄█████ ',
\' ███████▄░░░░░░░░░░░▄███████ ',
\' ██████████▄▄▄▄▄▄▄██████████ ',
\ ]
]])
end

return M
2 changes: 1 addition & 1 deletion nvim/lua/custom/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ return {
config = function()
require("custom.plugins.dashboard-nvim").setup()
end,
}
},
}

0 comments on commit 581ed14

Please sign in to comment.