feat: remove markdown modes
This commit is contained in:
parent
a5c06e6707
commit
c3509e44d8
4
init.lua
4
init.lua
@ -232,7 +232,7 @@ require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = { 'c', 'go', 'lua', 'python', 'tsx', 'typescript', 'markdown', 'bash', 'html', 'css' },
|
||||
|
||||
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
||||
auto_install = false,
|
||||
auto_install = true,
|
||||
|
||||
highlight = { enable = true },
|
||||
-- indent = { enable = true },
|
||||
@ -348,8 +348,6 @@ local on_attach = function(_, bufnr)
|
||||
vim.diagnostic.config({ float = { border = "single" } })
|
||||
end
|
||||
local servers = {
|
||||
clangd = {},
|
||||
-- hls = {},
|
||||
gopls = {
|
||||
gopls = {
|
||||
usePlaceholders = true,
|
||||
|
@ -1,4 +0,0 @@
|
||||
return {
|
||||
"https://github.com/tadmccorkle/markdown.nvim",
|
||||
opts = {},
|
||||
}
|
@ -1,10 +1,2 @@
|
||||
return {
|
||||
'MeanderingProgrammer/markdown.nvim',
|
||||
name = 'render-markdown', -- Only needed if you have another plugin named markdown.nvim
|
||||
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
||||
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
||||
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
||||
config = function()
|
||||
require('render-markdown').setup({})
|
||||
end,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user