|
@@ -1,63 +1,58 @@
|
|
|
-- 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 },
|
|
|
- -- },
|
|
|
+-- hl_override = {
|
|
|
+-- Comment = { italic = true },
|
|
|
+-- ["@comment"] = { italic = true },
|
|
|
+-- },
|
|
|
--}
|
|
|
|
|
|
-
|
|
|
-- }}}
|
|
|
|
|
|
-
|
|
|
-- {{{ sekhali config
|
|
|
|
|
|
-local highlights_ = require("custom.highlights")
|
|
|
+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
|
|
|
+ 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
|