Skip to content

Commit 6eccbea

Browse files
committed
chore(mark): use markview instead of renderer
1 parent 9393645 commit 6eccbea

File tree

3 files changed

+20
-22
lines changed

3 files changed

+20
-22
lines changed

lazy-lock.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"bars": { "branch": "main", "commit": "8c87b17c19e970e95fec19b560d70b62a34c7b96" },
33
"catppuccin": { "branch": "main", "commit": "4fd72a9ab64b393c2c22b168508fd244877fec96" },
44
"cmp": { "branch": "perf", "commit": "6c3d595f3223c1ae7392d4fde1626355439af6c1" },
5-
"cmp-async-path": { "branch": "main", "commit": "838a12586642940fde05f0b4bae0d38d8fbc5702" },
5+
"cmp-async-path": { "branch": "main", "commit": "03fac5dfd6f7880be2c059d58bebe007f0d6d8ee" },
66
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
77
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
88
"dropbar": { "branch": "master", "commit": "6156e07759fd8c7cbf764414f583aa7e47470368" },
9-
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
10-
"lspconfig": { "branch": "master", "commit": "8a3610d29df83d8632f8ee7c3afc779c12725531" },
11-
"markdown": { "branch": "main", "commit": "7718ee87596b601ddbc93170de3a354f598185e4" },
12-
"mini": { "branch": "main", "commit": "42744fd81136fdd7e01ce81fb99fc6b5e9a17f0f" },
9+
"lazy.nvim": { "branch": "main", "commit": "48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d" },
10+
"lspconfig": { "branch": "master", "commit": "0ef64599b8aa0187ee5f6d92cb39c951f348f041" },
11+
"markview.nvim": { "branch": "main", "commit": "f16486e49561740f33b6773df43c9bc2c3c34c7b" },
12+
"mini": { "branch": "main", "commit": "eb0f557a5797cfe9c720ed84a71582c22bccb4f8" },
1313
"plenary.nvim": { "branch": "master", "commit": "ec289423a1693aeae6cd0d503bac2856af74edaa" },
14-
"treesitter": { "branch": "master", "commit": "7499f7379459db3b31c75cf5cec45f785be6e2c7" }
14+
"treesitter": { "branch": "master", "commit": "3826d0c42ac635f560479b5b6ab522f6627a3466" }
1515
}

lua/opts.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ end
2525
opts.final = function()
2626
opt.completeopt = { "menuone", "noselect", "noinsert" }
2727
opt.wildmenu = true
28-
opt.pumheight = 20
28+
opt.pumheight = 10
2929
opt.ignorecase = true
3030
opt.smartcase = true
3131
opt.timeout = false

lua/plugins/init.lua

+13-15
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,21 @@ local plugins = {
144144
},
145145

146146
{
147-
"MeanderingProgrammer/render-markdown.nvim",
148-
name = "markdown",
147+
"OXY2DEV/markview.nvim",
149148
ft = "markdown",
150-
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" },
149+
dependencies = {
150+
"nvim-treesitter/nvim-treesitter",
151+
},
152+
},
153+
154+
{
155+
"OXY2DEV/bars-N-lines.nvim",
156+
lazy = false,
157+
name = "bars",
151158
config = function()
152-
require("render-markdown").setup {}
159+
require("bars").setup {
160+
statuscolumn = false,
161+
}
153162
end,
154163
},
155164

@@ -164,17 +173,6 @@ local plugins = {
164173
require("modules").autocmds()
165174
end,
166175
},
167-
168-
{
169-
"OXY2DEV/bars-N-lines.nvim",
170-
lazy = false,
171-
name = "bars",
172-
config = function()
173-
require("bars").setup({
174-
statuscolumn = false,
175-
})
176-
end,
177-
},
178176
}
179177

180178
require("lazy").setup(plugins, require "plugins.lazy_nvim")

0 commit comments

Comments
 (0)