mini.icon added, error corrected

This commit is contained in:
2026-06-27 17:49:36 +02:00
parent acd130badc
commit 6c6ec48b86
3 changed files with 20 additions and 14 deletions
+2 -2
View File
@@ -74,8 +74,8 @@ keymap.set( "n", "<leader>tp", ":tabp<CR>" ) -- go to prev tab
--
-- diagnostic warning/error navigation
--
keymap.set( "n", "g[", vim.diagnostic.goto_prev)
keymap.set( "n", "g]", vim.diagnostic.goto_next)
-- keymap.set( "n", "g[", vim.diagnostic.goto_prev)
-- keymap.set( "n", "g]", vim.diagnostic.goto_next)
-- ----------------------------------------------------------------------------
+17 -11
View File
@@ -191,17 +191,17 @@ return packer.startup(function(use)
-- --------------------------------------------------------------
-- render-markdown - mz
-- --------------------------------------------------------------
-- use {
-- "MeanderingProgrammer/render-markdown.nvim",
-- after = { 'nvim-treesitter' },
-- -- requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
-- requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
-- -- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
-- config = function()
-- require('render-markdown').setup({})
-- end
-- }
--
use {
"MeanderingProgrammer/render-markdown.nvim",
after = { 'nvim-treesitter' },
-- requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
-- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
config = function()
require('render-markdown').setup({})
end
}
-- --------------------------------------------------------------------------------------------
-- which-key
@@ -240,6 +240,12 @@ return packer.startup(function(use)
end
}
use {
'nvim-mini/mini.icons'
}
-- --------------------------------------------------------------------------------------------
-- Automatically set up your configuration after cloning packer.nvim.
-- Put this at the end after all plugins.
+1 -1
View File
@@ -29,7 +29,7 @@ require("which-key").setup {
scroll_up = "<c-u>", -- binding to scroll up inside the popup
},
window = {
border = "none", -- none, single, double, shadow
border = "shadow", -- none, single, double, shadow
position = "bottom", -- bottom, top
margin = { 1, 0, 1, 0 }, -- extra window margin [top, right, bottom, left]. When between 0 and 1, will be treated as a percentage of the screen size.
padding = { 1, 2, 1, 2 }, -- extra window padding [top, right, bottom, left]