aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/dash.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/dash.lua')
-rw-r--r--.config/nvim/lua/dash.lua17
1 files changed, 9 insertions, 8 deletions
diff --git a/.config/nvim/lua/dash.lua b/.config/nvim/lua/dash.lua
index fd9f03c..9079104 100644
--- a/.config/nvim/lua/dash.lua
+++ b/.config/nvim/lua/dash.lua
@@ -1,5 +1,5 @@
-local lazy = require "lazy"
local alpha = require "alpha"
+local lazy = require "lazy"
vim.api.nvim_create_autocmd("ColorScheme", {
callback = function()
@@ -21,7 +21,6 @@ vim.api.nvim_create_autocmd("ColorScheme", {
end,
})
-
return {
layout = {
{
@@ -125,10 +124,12 @@ return {
val = {
{
type = "text",
- val = function() return lazy.stats().loaded .. " plugin" .. (lazy.stats().loaded == 1 and "" or "s") .. " loaded" end,
+ val = function()
+ return lazy.stats().loaded .. " plugin" .. (lazy.stats().loaded == 1 and "" or "s") .. " loaded"
+ end,
opts = {
position = "center",
- }
+ },
},
{
type = "text",
@@ -137,10 +138,10 @@ return {
position = "center",
hl = {
{ "Comment", 0, 27 },
- { "DashEmphasis", 27, 35 }
- }
- }
- }
+ { "DashEmphasis", 27, 35 },
+ },
+ },
+ },
},
},
},