mini.icon added, error corrected
This commit is contained in:
@@ -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
@@ -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.
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user