diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-02-17 23:54:40 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-02-17 23:54:40 +0200 |
| commit | ac9145ea2a2f8dd845080b74f48228e1610b9eaa (patch) | |
| tree | fd2e8c2b1fac6514b2a32bca08fafc9c04ce276f /.config/nvim/lua/plugins/dashboard.lua | |
| parent | 71f094c28c5b11b7a4edfd4b048d70c806ff6be6 (diff) | |
| parent | 53a6aa43b8e187e45fdf8ab1b38c07ef3e017615 (diff) | |
| download | dotfiles-ac9145ea2a2f8dd845080b74f48228e1610b9eaa.tar.gz dotfiles-ac9145ea2a2f8dd845080b74f48228e1610b9eaa.zip | |
Merge commit 'd86bcd0dec3edec648fb0e5253d7a3bc5c9ec1be'
Diffstat (limited to '.config/nvim/lua/plugins/dashboard.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/dashboard.lua | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/dashboard.lua b/.config/nvim/lua/plugins/dashboard.lua new file mode 100644 index 0000000..7eb4814 --- /dev/null +++ b/.config/nvim/lua/plugins/dashboard.lua @@ -0,0 +1,64 @@ +local db = require("dashboard") +--vim.api.nvim_create_autocmd("VimEnter", { +-- callback = function() +-- -- disable line numbers +-- vim.opt_local.number = false +-- vim.opt_local.relativenumber = false +-- -- always start in insert mode +-- end, +--}) +db.setup({ + theme = "hyper", + config = { + header = { + [[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]], + [[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]], + [[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]], + [[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]], + [[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]], + [[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]], + }, + disable_move = true, + shortcut = { + { desc = " Plugins", group = "@property", action = "PackerStatus", key = "p" }, + { + desc = " Files", + group = "Label", + action = "Telescope find_files", + key = "f", + }, + { + desc = " Text", + group = "DiagnosticHint", + action = "Telescope live_grep", + key = "t", + }, + { + desc = " Scheme", + group = "Number", + action = "Telescope colorscheme", + key = "s", + }, + }, + }, + hide = { + statusline = false, + tabline = false, + winbar = false, + }, + -- preview = { +-- command, -- preview command +-- file_path, -- preview file path +-- file_height, -- preview file height +-- file_width, -- preview file width +-- }, +-- footer = {} --your footer +}) + +--vim.cmd([[ +-- autocmd FileType dashboard :highlight DashboardHeader guifg='#b2b2b2' +-- autocmd FileType dashboard :highlight DashboardCenter guifg='#5f8700' +-- autocmd FileType dashboard :highlight DashboardCenterIcon guifg='#0087af' +-- autocmd FileType dashboard :highlight DashboardShortCut guifg='#ffd7ff' +-- autocmd FileType dashboard :highlight DashboardFooter guifg='#878787' +--]]) |
