mirror of
https://github.com/GHOSCHT/dotfiles.git
synced 2024-11-10 05:27:46 +01:00
19 lines
369 B
Lua
19 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
|