1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- -- vim:fileencoding=utf-8:foldmethod=marker:foldmarker={{{,}}}
- -- This file needs to have same structure as nvconfig.lua
- -- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
- -- For try and search themes: "<cmd> Telescope themes"
- ---@type ChadrcConfig
- local M = {}
- -- {{{ Default config
- --M.ui = {
- -- theme = "onedark",
- -- hl_override = {
- -- Comment = { italic = true },
- -- ["@comment"] = { italic = true },
- -- },
- --}
- -- }}}
- -- {{{ sekhali config
- local highlights_ = require "custom.highlights"
- M.ui = {
- theme = "catppuccin",
- theme_toggle = { "catppuccin", "onedark" },
- -- nvim background transparency
- transparency = false,
- --statusline = {
- -- theme = "vscode_colored",
- --},
- nvdash = {
- load_on_startup = true,
- header = {
- -- Cause it's wednesday my dudes
- "██╗ ██╗███████╗██████╗ ███╗ ██╗███████╗███████╗██████╗ █████╗ ██╗ ██╗",
- "██║ ██║██╔════╝██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗██╔══██╗╚██╗ ██╔╝",
- "██║ █╗ ██║█████╗ ██║ ██║██╔██╗ ██║█████╗ ███████╗██║ ██║███████║ ╚████╔╝ ",
- "██║███╗██║██╔══╝ ██║ ██║██║╚██╗██║██╔══╝ ╚════██║██║ ██║██╔══██║ ╚██╔╝ ",
- "╚███╔███╔╝███████╗██████╔╝██║ ╚████║███████╗███████║██████╔╝██║ ██║ ██║ ",
- " ╚══╝╚══╝ ╚══════╝╚═════╝ ╚═╝ ╚═══╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═╝ ",
- },
- },
- --hl_override = highlights.override,
- --hl_add = highlights.add,
- hl_override = highlights_.override,
- }
- -- }}}
- return M
|