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