return { { "folke/snacks.nvim", opts = { dashboard = { preset = { header = [[ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠤⠖⠲⠤⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠋⠀⠀⠀⠀⠀⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⣀⠀⢠⡃⠀⠀⠀⠀⠀⠀⠀⠀⢘⡄⠀⣀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⢰⣿⣧⠘⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃⣼⣿⡆⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⣿⠇⢻⣧⠹⣿⣿⣿⣿⣿⣿⣿⣿⠏⣼⡟⠸⣿⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⣸⡟⠀⠀⢻⣧⠈⠙⠻⠿⠿⠟⠋⠁⣼⡟⠀⠀⢻⣇⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⢀⣿⠃⠀⠀⠀⢻⣧⠀⠀⠀⠀⠀⠀⣼⡟⠀⠀⠀⠘⣿⡀⠀⠀⠀⠀ ⠀⠀⠀⠀⣼⡏⠀⠀⠀⠀⠀⢻⣧⠀⠀⠀⠀⣼⡟⠀⠀⠀⠀⠀⢹⣧⠀⠀⠀⠀ ⠀⠀⠀⠀⠛⠛⠛⠛⠛⠛⠛⠀⢻⣧⠀⠀⣼⡟⠀⠛⠛⠛⠛⠛⠛⠛⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣧⣼⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ]], -- stylua: ignore ---@type snacks.dashboard.Item[] keys = { { icon = " ", key = "f", desc = "Find File", action = ":lua Snacks.dashboard.pick('files')" }, { icon = " ", key = "n", desc = "New File", action = ":ene | startinsert" }, { icon = " ", key = "g", desc = "Find Text", action = ":lua Snacks.dashboard.pick('live_grep')" }, { icon = " ", key = "r", desc = "Recent Files", action = ":lua Snacks.dashboard.pick('oldfiles')" }, { icon = " ", key = "c", desc = "Config", action = ":lua Snacks.dashboard.pick('files', {cwd = vim.fn.stdpath('config')})" }, { icon = " ", key = "s", desc = "Restore Session", section = "session" }, { icon = " ", key = "x", desc = "Lazy Extras", action = ":LazyExtras" }, { icon = "󰒲 ", key = "l", desc = "Lazy", action = ":Lazy" }, { icon = " ", key = "q", desc = "Quit", action = ":qa" }, }, }, }, }, }, { "folke/edgy.nvim", opts = { left = { { title = "Neo-Tree", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "filesystem" end, pinned = true, open = function() vim.api.nvim_input("e") end, size = { height = 0.5 }, }, { title = "Neo-Tree Git", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "git_status" end, pinned = true, open = "Neotree position=right git_status", }, { title = "Neo-Tree Buffers", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "buffers" end, pinned = true, open = "Neotree position=top buffers", }, -- { -- ft = "Outline", -- pinned = true, -- open = "SymbolsOutline", -- }, "neo-tree", }, }, }, { "norcalli/nvim-colorizer.lua", config = function() require("colorizer").setup({ "css", "javascript", "html" }, { RGB = true, -- #RGB hex codes RRGGBB = true, -- #RRGGBB hex codes names = true, -- "Name" codes like Blue RRGGBBAA = true, -- #RRGGBBAA hex codes rgb_fn = true, -- CSS rgb() and rgba() functions hsl_fn = true, -- CSS hsl() and hsla() functions css = true, -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB css_fn = true, -- Enable all CSS *functions*: rgb_fn, hsl_fn -- Available modes: foreground, background mode = "background", -- Set the display mode. }) end, }, }