Skip to content

Commit eaa7ddf

Browse files
committed
Remove render-markdown.nvim
1 parent fa35f62 commit eaa7ddf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.config/nvim/init.lua

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ require('lazy').setup({
6565
opts = {},
6666
},
6767

68-
-- Markdown rendering
69-
{
70-
'MeanderingProgrammer/render-markdown.nvim',
71-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' },
72-
ft = { 'markdown' },
73-
opts = {},
74-
},
75-
7668
-- LSP and Completion
7769
'neovim/nvim-lspconfig',
7870
'williamboman/mason.nvim',
@@ -446,10 +438,12 @@ pcall(function()
446438
vim.opt.scrolloff = 15
447439
vim.wo.number = false
448440
vim.wo.relativenumber = false
441+
vim.wo.signcolumn = 'no'
449442
end,
450443
on_close = function()
451444
vim.wo.number = true
452445
vim.wo.relativenumber = true
446+
vim.wo.signcolumn = 'yes'
453447
end,
454448
plugins = {
455449
twilight = { enabled = true },

0 commit comments

Comments
 (0)