feat: remove markdown modes

This commit is contained in:
Lucas Barbieri 2024-08-20 16:24:00 -03:00
parent a5c06e6707
commit c3509e44d8
3 changed files with 1 additions and 15 deletions

View File

@ -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,

View File

@ -1,4 +0,0 @@
return {
"https://github.com/tadmccorkle/markdown.nvim",
opts = {},
}

View File

@ -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,
}