summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/config.lua
blob: a67f7341af57d12ed44ee6881d9df91d293dc832 (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
--
-- config for regular plugins
--

local M = {}

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

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

M.tree = {}

require("getchoo.keymap")
return M