AutoYADM commit: 2024-12-06 18:00:04

This commit is contained in:
Daniel Fichtinger 2024-12-06 18:00:04 -05:00
parent 86391521d1
commit 58dc874fa3
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1 @@
filetypes

View file

@ -0,0 +1 @@
frontmatter

View file

@ -1,4 +1,22 @@
return {
"williamboman/mason.nvim",
opts = { ensure_installed = { "typos-lsp" } },
{
"neovim/nvim-lspconfig",
opts = {
servers = {
typos_lsp = {
init_options = {
diagnosticSeverity = "Warning",
},
-- autostart = false,
-- filetypes = {
-- "markdown",
-- },
},
},
},
},
{
"williamboman/mason-lspconfig.nvim",
opts = { ensure_installed = { "typos_lsp" } },
},
}