aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r--.config/nvim/lua/plugins/dashboard.lua64
-rw-r--r--.config/nvim/lua/plugins/heirline.lua5
-rw-r--r--.config/nvim/lua/plugins/trouble.lua47
3 files changed, 113 insertions, 3 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'
+--]])
diff --git a/.config/nvim/lua/plugins/heirline.lua b/.config/nvim/lua/plugins/heirline.lua
index 47ffe18..6c05e28 100644
--- a/.config/nvim/lua/plugins/heirline.lua
+++ b/.config/nvim/lua/plugins/heirline.lua
@@ -792,7 +792,7 @@ local SpecialStatusline = {
condition = function()
return conditions.buffer_matches({
buftype = { "nofile", "prompt", "help", "quickfix" },
- filetype = { "^git.*", "fugitive" },
+ filetype = { "^git.*", "fugitive", "dashboard", },
})
end,
@@ -801,7 +801,6 @@ local SpecialStatusline = {
--Align,
{ ViMode, hl = { fg = utils.get_highlight("statusline").bg, force = true } },
{ LeftSpace, hl = { bg = utils.get_highlight("statusline").bg, force = true } },
- { FileType, hl = { bg = utils.get_highlight("statusline").bg, force = true } },
{ Space, hl = { bg = utils.get_highlight("statusline").bg, force = true } },
{ Align, hl = { bg = utils.get_highlight("statusline").bg, force = true } },
{ RightSpace, hl = { fg = utils.get_highlight("statusline").bg, force = true } },
@@ -979,7 +978,7 @@ local Center = {
condition = function()
return conditions.buffer_matches({
buftype = { "nofile", "prompt", "help", "quickfix" },
- filetype = { "^git.*", "fugitive" },
+ filetype = { "^git.*", "fugitive", "dashboard", },
})
end,
init = function()
diff --git a/.config/nvim/lua/plugins/trouble.lua b/.config/nvim/lua/plugins/trouble.lua
new file mode 100644
index 0000000..d4f50dc
--- /dev/null
+++ b/.config/nvim/lua/plugins/trouble.lua
@@ -0,0 +1,47 @@
+require("trouble").setup {
+ position = "bottom", -- position of the list can be: bottom, top, left, right
+ height = 10, -- height of the trouble list when position is top or bottom
+ width = 50, -- width of the list when position is left or right
+ icons = true, -- use devicons for filenames
+ mode = "workspace_diagnostics", -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
+ fold_open = "", -- icon used for open folds
+ fold_closed = "", -- icon used for closed folds
+ group = true, -- group results by file
+ padding = true, -- add an extra new line on top of the list
+ action_keys = { -- key mappings for actions in the trouble list
+ -- map to {} to remove a mapping, for example:
+ -- close = {},
+ close = "q", -- close the list
+ cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
+ refresh = "r", -- manually refresh
+ jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds
+ open_split = { "<c-x>" }, -- open buffer in new split
+ open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
+ open_tab = { "<c-t>" }, -- open buffer in new tab
+ jump_close = {"o"}, -- jump to the diagnostic and close the list
+ toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
+ toggle_preview = "P", -- toggle auto_preview
+ hover = "K", -- opens a small popup with the full multiline message
+ preview = "p", -- preview the diagnostic location
+ close_folds = {"zM", "zm"}, -- close all folds
+ open_folds = {"zR", "zr"}, -- open all folds
+ toggle_fold = {"zA", "za"}, -- toggle fold of current file
+ previous = "k", -- previous item
+ next = "j" -- next item
+ },
+ indent_lines = true, -- add an indent guide below the fold icons
+ auto_open = false, -- automatically open the list when you have diagnostics
+ auto_close = false, -- automatically close the list when you have no diagnostics
+ auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
+ auto_fold = false, -- automatically fold a file trouble list at creation
+ auto_jump = {"lsp_definitions"}, -- for the given modes, automatically jump if there is only a single result
+ signs = {
+ -- icons / text used for a diagnostic
+ error = "",
+ warning = "",
+ hint = "",
+ information = "",
+ other = ""
+ },
+ use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
+}