aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/mini.lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/mini.lua')
-rw-r--r--vim/mini.lua36
1 files changed, 19 insertions, 17 deletions
diff --git a/vim/mini.lua b/vim/mini.lua
index 398ebb4..ff1a3fe 100644
--- a/vim/mini.lua
+++ b/vim/mini.lua
@@ -152,9 +152,7 @@ end, { buffer = bufnr, desc = "Toggle diff" })
152-- }}} 152-- }}}
153-- mini.map {{{ 153-- mini.map {{{
154require("mini.map").setup() 154require("mini.map").setup()
155vim.keymap.set("n", "\\m", function() 155vim.keymap.set("n", "\\M", function() require("mini.map").toggle() end, { desc = "Minimap", buffer = bufnr })
156 require("mini.map").toggle()
157end, { desc = "Minimap", buffer = bufnr })
158-- }}} 156-- }}}
159-- mini.visits {{{ 157-- mini.visits {{{
160 158
@@ -971,20 +969,24 @@ require("lazy").setup({
971 end, 969 end,
972 }, 970 },
973-- }}} 971-- }}}
974 -- -- markview.nvim {{{ 972 -- markview.nvim {{{
975 -- { 973 {
976 -- "OXY2DEV/markview.nvim", 974 "OXY2DEV/markview.nvim",
977 -- enable = false, 975 lazy = false,
978 -- ft = "markdown", 976 ft = "markdown",
979 -- 977
980 -- dependencies = { 978 dependencies = {
981 -- -- You may not need this if you don't lazy load 979 -- You may not need this if you don't lazy load
982 -- -- Or if the parsers are in your $RUNTIMEPATH 980 -- Or if the parsers are in your $RUNTIMEPATH
983 -- "nvim-treesitter/nvim-treesitter", 981 "nvim-treesitter/nvim-treesitter",
984 -- 982
985 -- "nvim-tree/nvim-web-devicons" 983 "nvim-tree/nvim-web-devicons"
986 -- }, 984 },
987 -- },-- }}} 985 config = function()
986 vim.keymap.set( 'n', '\\m', ":Markview<CR>", { buffer = bufnr, desc = '' })
987 end
988 },
989 -- }}}
988 990
989 -- lspconfig {{{ 991 -- lspconfig {{{
990 -- Use :help lspconfig-all to check servers 992 -- Use :help lspconfig-all to check servers