mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
23 lines
408 B
Lua
23 lines
408 B
Lua
local M = {}
|
|
|
|
M.ui = {
|
|
theme = "oxocarbon",
|
|
transparency = true,
|
|
nvdash = {
|
|
load_on_startup = true,
|
|
|
|
header = {
|
|
"|------------------------|",
|
|
"| NOBODY FUX WITH TUX |",
|
|
"|------------------------|",
|
|
" \\ (•◡•) / ",
|
|
" \\ / ",
|
|
},
|
|
},
|
|
}
|
|
|
|
M.mappings = require("custom.mappings")
|
|
M.plugins = "custom.plugins"
|
|
|
|
return M
|