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
|
-- diagnostic warning/error navigation
|
||||||
--
|
--
|
||||||
keymap.set( "n", "g[", vim.diagnostic.goto_prev)
|
-- keymap.set( "n", "g[", vim.diagnostic.goto_prev)
|
||||||
keymap.set( "n", "g]", vim.diagnostic.goto_next)
|
-- keymap.set( "n", "g]", vim.diagnostic.goto_next)
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------
|
||||||
|
|||||||
+17
-11
@@ -191,17 +191,17 @@ return packer.startup(function(use)
|
|||||||
-- --------------------------------------------------------------
|
-- --------------------------------------------------------------
|
||||||
-- render-markdown - mz
|
-- render-markdown - mz
|
||||||
-- --------------------------------------------------------------
|
-- --------------------------------------------------------------
|
||||||
-- use {
|
use {
|
||||||
-- "MeanderingProgrammer/render-markdown.nvim",
|
"MeanderingProgrammer/render-markdown.nvim",
|
||||||
-- after = { 'nvim-treesitter' },
|
after = { 'nvim-treesitter' },
|
||||||
-- -- requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
|
-- 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-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
|
-- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
|
||||||
-- config = function()
|
config = function()
|
||||||
-- require('render-markdown').setup({})
|
require('render-markdown').setup({})
|
||||||
-- end
|
end
|
||||||
-- }
|
}
|
||||||
--
|
|
||||||
|
|
||||||
-- --------------------------------------------------------------------------------------------
|
-- --------------------------------------------------------------------------------------------
|
||||||
-- which-key
|
-- which-key
|
||||||
@@ -240,6 +240,12 @@ return packer.startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
use {
|
||||||
|
'nvim-mini/mini.icons'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
-- --------------------------------------------------------------------------------------------
|
-- --------------------------------------------------------------------------------------------
|
||||||
-- Automatically set up your configuration after cloning packer.nvim.
|
-- Automatically set up your configuration after cloning packer.nvim.
|
||||||
-- Put this at the end after all plugins.
|
-- 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
|
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
||||||
},
|
},
|
||||||
window = {
|
window = {
|
||||||
border = "none", -- none, single, double, shadow
|
border = "shadow", -- none, single, double, shadow
|
||||||
position = "bottom", -- bottom, top
|
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.
|
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]
|
padding = { 1, 2, 1, 2 }, -- extra window padding [top, right, bottom, left]
|
||||||
|
|||||||
Reference in New Issue
Block a user