Initial Ubuntu i3wm dotfiles

This commit is contained in:
2026-01-29 23:19:44 +05:30
commit 75a6027f67
40 changed files with 2261 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
return {
"nvimdev/dashboard-nvim",
event = "VimEnter",
config = function()
require("dashboard").setup({
theme = "doom",
config = {
-- ================= HEADER =================
header = {
"",
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗",
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║",
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║",
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║",
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
"",
" “If it feels slow, youre doing it wrong.”",
"",
},
-- ================= CENTER =================
center = {
{ icon = "", desc = "New file", key = "n", action = "enew" },
{ icon = "", desc = "Find file", key = "f", action = "Telescope find_files" },
{ icon = "", desc = "Live grep", key = "g", action = "Telescope live_grep" },
{ icon = "󰈙 ", desc = "Recent files", key = "r", action = "Telescope oldfiles" },
{ icon = "󰩈 ", desc = "Quit", key = "q", action = "qa" },
},
footer = {},
},
})
-- ================= COLORS =================
vim.api.nvim_set_hl(0, "DashboardHeader", { fg = "#7aa2f7" }) -- logo
vim.api.nvim_set_hl(0, "DashboardFooter", { fg = "#9ece6a", italic = true }) -- quote
end,
}