lmao forgot i use git
This commit is contained in:
parent
e0661a87ab
commit
ffe373e174
1 changed files with 56 additions and 1 deletions
|
@ -72,7 +72,62 @@ local plugins = {
|
||||||
-- startup
|
-- startup
|
||||||
{
|
{
|
||||||
'glepnir/dashboard-nvim',
|
'glepnir/dashboard-nvim',
|
||||||
config = nil,
|
config = function()
|
||||||
|
require('dashboard').setup {
|
||||||
|
theme = 'hyper', -- theme is doom and hyper default is hyper
|
||||||
|
config = {
|
||||||
|
-- todo https://github.com/nvimdev/dashboard-nvim
|
||||||
|
header = {
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
' █████████ █████████ █████ ████ ███████ ',
|
||||||
|
' ███░░░░░███ ███░░░░░███ ░░███ ███░ ███░░░░░███ ',
|
||||||
|
'░███ ░░░ ░███ ░███ ░███ ███ ███ ░░███',
|
||||||
|
'░░█████████ ░███████████ ░███████ ░███ ░███',
|
||||||
|
' ░░░░░░░░███ ░███░░░░░███ ░███░░███ ░███ ░███',
|
||||||
|
' ███ ░███ ░███ ░███ ░███ ░░███ ░░███ ███',
|
||||||
|
'░░█████████ █████ █████ █████ ░░████ ░░░███████░',
|
||||||
|
'░░░░░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░ ░░░░░░░ ',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
}, --your header
|
||||||
|
config = {
|
||||||
|
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 = ' Apps',
|
||||||
|
group = 'DiagnosticHint',
|
||||||
|
action = 'Telescope app',
|
||||||
|
key = 'a',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc = ' dotfiles',
|
||||||
|
group = 'Number',
|
||||||
|
action = 'Telescope dotfiles',
|
||||||
|
key = 'd',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end,
|
||||||
event = 'VimEnter',
|
event = 'VimEnter',
|
||||||
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
|
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue