diff options
| author | Blake Romero <blake@blkrom.com> | 2025-01-24 15:07:04 +0000 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-01-24 15:07:04 +0000 |
| commit | d3b36fad967d8cf52356042aff0423cd22cc8767 (patch) | |
| tree | 0ffbe9ffe5c8dadd0061d0cacd874ebc82d22447 /lua/plugins | |
| parent | ed57e1a0e7dc754be1bbf8a382edaf006682dae9 (diff) | |
Add alpha-nvim
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/alpha.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lua/plugins/alpha.lua b/lua/plugins/alpha.lua new file mode 100644 index 0000000..0a769c7 --- /dev/null +++ b/lua/plugins/alpha.lua @@ -0,0 +1,21 @@ +return { + "goolord/alpha-nvim", + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + local theme = require("alpha.themes.startify") + theme.file_icons.provider = "devicons" + theme.section.header.val = { + [[ ████ ██████ █████ ██ ]], + [[ ███████████ █████ ]], + [[ █████████ ███████████████████ ███ ███████████ ]], + [[ █████████ ███ █████████████ █████ ██████████████ ]], + [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]], + [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]], + [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]], + } + require("alpha").setup(theme.config) + end, + keys = { + { "<leader>m", ":Alpha<CR>" } + } +} |
