diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-19 22:48:48 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-19 22:48:48 +0200 |
| commit | 4916ab5ee9550f9c6ae7ebabece3a2486d9ef4ae (patch) | |
| tree | cc1c36e323390b4a95f90f170b373c186fb86b84 | |
| parent | a1264f4352057e8929c07495c8f218ac8a8458da (diff) | |
| download | dotfiles-4916ab5ee9550f9c6ae7ebabece3a2486d9ef4ae.tar.gz dotfiles-4916ab5ee9550f9c6ae7ebabece3a2486d9ef4ae.zip | |
Re-formatted file
| -rw-r--r-- | lua/plugins/dashboard.lua | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/lua/plugins/dashboard.lua b/lua/plugins/dashboard.lua index 834ae82..a78332b 100644 --- a/lua/plugins/dashboard.lua +++ b/lua/plugins/dashboard.lua @@ -1,4 +1,4 @@ -local db = require("dashboard") +local db = require('dashboard') --vim.api.nvim_create_autocmd("VimEnter", { -- callback = function() @@ -10,9 +10,9 @@ local db = require("dashboard") --}) db.setup({ - theme = "hyper", + theme = 'hyper', config = { - mru = { limit = 10 }, + mru = { limit = 10, label = '' }, project = { limit = 10 }, header = { [[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]], @@ -24,45 +24,45 @@ db.setup({ }, disable_move = false, shortcut = { - { desc = " Plugins", group = "Number", action = "PackerStatus", key = "p" }, + { desc = ' Plugins', group = 'Number', action = 'PackerStatus', key = 'p' }, --{ desc = " Plugins", group = "@property", action = "PackerStatus", key = "p" }, { - desc = " Files", - group = "Number", + desc = ' Files', + group = 'Number', --group = "Label", - action = "Telescope find_files", - key = "f", + action = 'Telescope find_files', + key = 'f', }, { - desc = " Text", - group = "Number", + desc = ' Text', + group = 'Number', --group = "Label", - action = "enew", - key = "t", + action = 'enew', + key = 't', }, { - desc = " Grep", - group = "Number", + desc = ' Grep', + group = 'Number', --group = "Label", - action = "Telescope live_grep", - key = "g", + action = 'Telescope live_grep', + key = 'g', }, { - desc = " Scheme", - group = "Number", + desc = ' Scheme', + group = 'Number', --group = "Label", - action = "Telescope colorscheme", - key = "s", + action = 'Telescope colorscheme', + key = 's', }, { - desc = " Config", - group = "Number", + desc = ' Config', + group = 'Number', --group = "Label", - action = ":edit ~/.config.nvim/init.lua", - key = "c", + action = ':edit ~/.config.nvim/init.lua', + key = 'c', }, }, - footer = { "", "Hello World!" }, + footer = { '', 'Hello World!' }, }, hide = { statusline = false, |
