nvim: dashboard prettification
This commit is contained in:
parent
19f00ce552
commit
a143f808c7
1 changed files with 26 additions and 2 deletions
|
@ -20,15 +20,39 @@ hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
|
||||||
Group.new("IndentBlanklineContextChar", colors.IndentBlanklineContextChar)
|
Group.new("IndentBlanklineContextChar", colors.IndentBlanklineContextChar)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
local logo = [[
|
||||||
|
███████ ██ ██ ███████ ██ ███ ███ █████ ███ ██ ██████ ██████ ██████ ██ ██ ██████
|
||||||
|
██ ██ ██ ██ ██ ████ ████ ██ ██ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
███████ ███████ █████ ██ ██ ████ ██ ███████ ██ ██ ██ ██ ███ ██████ ██ ██ ██ ██ ██████
|
||||||
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
███████ ██ ██ ███████ ███████ ██ ██ ██ ██ ██ ████ ██████ ██ ██ ██████ ██████ ██
|
||||||
|
]]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
{
|
||||||
|
"nvimdev/dashboard-nvim",
|
||||||
|
opts = {
|
||||||
|
theme = "hyper",
|
||||||
|
config = {
|
||||||
|
header = vim.split(string.rep("\n", 8) .. logo, "\n"),
|
||||||
|
week_header = { enable = false },
|
||||||
|
packages = { enable = false },
|
||||||
|
project = { enable = false },
|
||||||
|
footer = {},
|
||||||
|
shortcut = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"echasnovski/mini.indentscope",
|
"echasnovski/mini.indentscope",
|
||||||
opts = {
|
opts = {
|
||||||
draw = {
|
draw = {
|
||||||
delay = 25, -- ms
|
delay = 50, -- ms
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
|
@ -54,7 +78,7 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
scope = {
|
scope = {
|
||||||
enabled = true,
|
enabled = false,
|
||||||
show_start = false,
|
show_start = false,
|
||||||
char = "│",
|
char = "│",
|
||||||
highlight = {
|
highlight = {
|
||||||
|
|
Loading…
Reference in a new issue