summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/dashboard.lua
blob: f8458c90b4d5861f52e67d3efb53c73722710298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require('dashboard').setup {
  theme = "doom",
  config = {
    header = art.misc.hydra,
    center = {
      {
        icon = " ",
        desc = "Find file",
        key = "f",
        action = ":cd $HOME | Telescope find_files<cr>",
      },
    },
    vertical_center = true,
  },
}