mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-14 02:33:58 +01:00
20 lines
294 B
Lua
20 lines
294 B
Lua
|
---@type ChadrcConfig
|
||
|
local M = {}
|
||
|
|
||
|
M.plugins = "custom.plugins"
|
||
|
M.mappings = require "custom.mappings"
|
||
|
|
||
|
M.ui = {
|
||
|
theme = "catppuccin",
|
||
|
statusline = {
|
||
|
theme = "default",
|
||
|
separator_style = "arrow",
|
||
|
},
|
||
|
tabufline = {
|
||
|
lazyload = false,
|
||
|
show_numbers = true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return M
|