summaryrefslogtreecommitdiff
path: root/lua/plugins/alpha.lua
blob: a0f8e12e316b519f8ac3447b9ef38bc8b053d996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
  "goolord/alpha-nvim",
  dependencies = { 'nvim-tree/nvim-web-devicons' },
  config = function()
    local theme = require("alpha.themes.startify")
    theme.file_icons.provider = "devicons"
    require("alpha").setup(theme.config)
  end,
  keys = {
    { "<leader>m", ":Alpha<CR>" }
  }
}