WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
2 changed files with 30 additions and 0 deletions
Showing only changes of commit ac671aabf0 - Show all commits

View file

@ -0,0 +1,22 @@
return function()
require("dashboard").setup({
theme = "hyper",
config = {
week_header = {
enable = true,
},
shortcut = {
{ desc = " Update", group = "@property", action = "Lazy update", key = "u" },
{
icon = "",
icon_hl = "@variable",
desc = "Files",
group = "Label",
action = "Telescope find_files",
key = "f",
},
{ desc = "Quit", action = "q", key = "q" },
},
},
})
end

View file

@ -203,6 +203,14 @@ local plugins = {
-- Caddyfile syntax support -- Caddyfile syntax support
"isobit/vim-caddyfile", "isobit/vim-caddyfile",
-- Startup dashboard
{
"glepnir/dashboard-nvim",
event = "VimEnter",
config = require("plugins.dashboard"),
dependencies = { { "kyazdani42/nvim-web-devicons" } },
},
} }
local lazy_opts = {} local lazy_opts = {}