mirror of
https://github.com/GHOSCHT/dotfiles.git
synced 2024-11-10 04:01:56 +01:00
20 lines
369 B
Lua
20 lines
369 B
Lua
|
local headers = require("custom.headers")
|
||
|
|
||
|
---@type ChadrcConfig
|
||
|
local M = {}
|
||
|
M.ui = {
|
||
|
theme = 'catppuccin',
|
||
|
nvdash = {
|
||
|
load_on_startup = true,
|
||
|
header=headers.Bloody,
|
||
|
},
|
||
|
statusline = {
|
||
|
separator_style = "block",
|
||
|
theme = "default",
|
||
|
},
|
||
|
transparency = true,
|
||
|
}
|
||
|
M.plugins = "custom.plugins"
|
||
|
M.mappings = require "custom.mappings"
|
||
|
return M
|