summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/config.lua
blob: 529dade04e119bb0c86a3b8c435371feee2e4e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--
-- config for regular plugins
--

local M = {}

M.bufferline = {
  animation = true,
  auto_hide = true,
  icons = true,
  maximum_padding = 2,
  semantic_letters = true,
}

local db = require("dashboard")
db.custom_center = {
  {
    desc = "find a file",
    action = "Telescope fd",
  },
  {
    desc = "update plugins",
    action = "PackerSync",
  },
  {
    desc = "update treesitter parsers",
    actions = "TSUpdate",
  },
}

db.custom_header = {
  " ███╗   ██╗ ███████╗ ██████╗  ██╗   ██╗ ██╗ ███╗   ███╗",
  " ████╗  ██║ ██╔════╝██╔═══██╗ ██║   ██║ ██║ ████╗ ████║",
  " ██╔██╗ ██║ █████╗  ██║   ██║ ██║   ██║ ██║ ██╔████╔██║",
  " ██║╚██╗██║ ██╔══╝  ██║   ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║",
  " ██║ ╚████║ ███████╗╚██████╔╝  ╚████╔╝  ██║ ██║ ╚═╝ ██║",
  " ╚═╝  ╚═══╝ ╚══════╝ ╚═════╝    ╚═══╝   ╚═╝ ╚═╝     ╚═╝",
}

M.lualine = {
  options = {
    theme = "nord",
  },
  extensions = { "nvim-tree" },
}

M.tree = {}

require("getchoo.keymap")
return M