diff --git a/dot-config/nvim/lua/chadrc.lua b/dot-config/nvim/lua/chadrc.lua index 6bb2cf7..afd57e3 100644 --- a/dot-config/nvim/lua/chadrc.lua +++ b/dot-config/nvim/lua/chadrc.lua @@ -3,10 +3,42 @@ ---@type ChadrcConfig local M = {} + M = { base46 = { theme = "catppuccin", transparency = true + }, + + ui = { + statusline = { + theme = "minimal", + separator_style = "round", + order = { "mode", "file", "git", "%=", "cwd"}, + } + }, + + nvdash = { + load_on_startup = true, + header = { + " ", + " ▄▄ ▄ ▄▄▄▄▄▄▄ ", + " ▄▀███▄ ▄██ █████▀ ", + " ██▄▀███▄ ███ ", + " ███ ▀███▄ ███ ", + " ███ ▀██ ███ ", + " ███ ▀ ███ ", + " ▀██ █████▄▀█▀▄██████▄ ", + " ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ", + " ", + " ", + }, + buttons = { + { txt = " Find File", keys = "ff", cmd = "Telescope find_files" }, + { txt = " Recent Files", keys = "fo", cmd = "Telescope oldfiles" }, + { txt = "󰈭 Find Word", keys = "fw", cmd = "Telescope live_grep" }, + { txt = "󰈆 Exit", keys = ":q!", cmd = "q!" }, + } } -- hl_override = { -- Comment = { italic = true },