summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/config.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/getchoo/config.lua')
-rw-r--r--.config/nvim/lua/getchoo/config.lua50
1 files changed, 50 insertions, 0 deletions
diff --git a/.config/nvim/lua/getchoo/config.lua b/.config/nvim/lua/getchoo/config.lua
new file mode 100644
index 0000000..529dade
--- /dev/null
+++ b/.config/nvim/lua/getchoo/config.lua
@@ -0,0 +1,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