[neovim] Removes copilot from the LSP list

This commit is contained in:
2025-03-03 21:42:33 -08:00
parent 696c1c1503
commit 40e913180c
2 changed files with 7 additions and 1 deletions

View File

@@ -3,7 +3,6 @@ return {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
opts = { opts = {
servers = { servers = {
copilot = {},
lua_ls = {}, lua_ls = {},
nil_ls = {}, nil_ls = {},
}, },

View File

@@ -0,0 +1,7 @@
# Provide nicely formatted markdown tables.
return {
"Kicamon/markdown-table-mode.nvim",
config = function()
require("markdown-table-mode").setup()
end,
}