diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/init.lua | 2 | ||||
| -rw-r--r-- | .config/nvim/lua/plugins/dashboard.lua | 64 | ||||
| -rw-r--r-- | .config/nvim/lua/plugins/heirline.lua | 5 | ||||
| -rw-r--r-- | .config/nvim/lua/plugins/trouble.lua | 47 | ||||
| -rw-r--r-- | .config/nvim/lua/user/keys.lua | 8 | ||||
| -rw-r--r-- | .config/nvim/lua/user/pack.lua | 26 |
6 files changed, 136 insertions, 16 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index f6b6ed5..22ff27a 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -74,6 +74,8 @@ local modules = { "plugins.colorscheme", "plugins.heirline", "plugins.toggleterm", + "plugins.trouble", + "plugins.dashboard", --"plugins.modify-blend", --"plugins.dap", --"plugins.floatterm", 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 +} diff --git a/.config/nvim/lua/user/keys.lua b/.config/nvim/lua/user/keys.lua index 176593c..7496b65 100644 --- a/.config/nvim/lua/user/keys.lua +++ b/.config/nvim/lua/user/keys.lua @@ -284,3 +284,11 @@ map("n", "<leader>zm", "<CMD>ZenMode<CR> | :echom ('Zen Mode')<CR> | :sl! | echo -- Vim-rooter map("n", "<leader>ro", "<CMD>Rooter<CR> | :echom ('cd to root/project directory')<CR> | :sl! | echo ('')<CR>", term_opts) + +-- Trouble (UI to show diagnostics) +map("n", "<leader>t", "<CMD>TroubleToggle<CR>") +map("n", "<leader>tw", "<CMD>TroubleToggle workspace_diagnostics<CR>") +map("n", "<leader>td", "<CMD>TroubleToggle document_diagnostics<CR>") +map("n", "<leader>tq", "<CMD>TroubleToggle quickfix<CR>") +map("n", "<leader>tl", "<CMD>TroubleToggle loclist<CR>") +map("n", "gR", "<CMD>TroubleToggle lsp_references<CR>") diff --git a/.config/nvim/lua/user/pack.lua b/.config/nvim/lua/user/pack.lua index 696309e..65b475b 100644 --- a/.config/nvim/lua/user/pack.lua +++ b/.config/nvim/lua/user/pack.lua @@ -126,7 +126,9 @@ return packer.startup(function(use) --use("tpope/vim-unimpaired") -- --use("vimpostor/vim-tpipeline") -- use("nathom/filetype.nvim") -- - use("myusuf3/numbers.vim") -- + use({"myusuf3/numbers.vim", -- + vim.cmd("let g:numbers_exclude = ['dashboard']") + }) use("windwp/nvim-autopairs") -- use("numToStr/Comment.nvim") -- use("akinsho/toggleterm.nvim") -- @@ -152,13 +154,6 @@ return packer.startup(function(use) use({ "folke/trouble.nvim", requires = "nvim-tree/nvim-web-devicons", - config = function() - require("trouble").setup { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - } - end }) use("airblade/vim-rooter") -- --use("vim-test/vim-test") -- @@ -180,12 +175,17 @@ return packer.startup(function(use) -- UI use("kyazdani42/nvim-web-devicons") -- use("onsails/lspkind-nvim") -- + --use({ + -- 'goolord/alpha-nvim', + -- requires = { 'nvim-tree/nvim-web-devicons' }, + -- config = function () + -- require'alpha'.setup(require'alpha.themes.startify'.config) + -- end + --}) use({ - 'goolord/alpha-nvim', - requires = { 'nvim-tree/nvim-web-devicons' }, - config = function () - require'alpha'.setup(require'alpha.themes.startify'.config) - end + 'glepnir/dashboard-nvim', + event = 'VimEnter', + requires = {'nvim-tree/nvim-web-devicons'} }) use("rcarriga/nvim-notify") -- Notification plugin use("karb94/neoscroll.nvim") -- Faster/smooth scrolling |
