diff --git a/.config/harper-ls/dictionary.txt b/.config/harper-ls/dictionary.txt new file mode 100644 index 00000000..57f7c8bc --- /dev/null +++ b/.config/harper-ls/dictionary.txt @@ -0,0 +1 @@ +filetypes diff --git a/.config/harper-ls/file_dictionaries/home%fic%second-brain%projects%Zona.md% b/.config/harper-ls/file_dictionaries/home%fic%second-brain%projects%Zona.md% new file mode 100644 index 00000000..dde5f722 --- /dev/null +++ b/.config/harper-ls/file_dictionaries/home%fic%second-brain%projects%Zona.md% @@ -0,0 +1 @@ +frontmatter diff --git a/.config/nvim/lua/plugins/typos.lua b/.config/nvim/lua/plugins/typos.lua index 9e15b7a9..1be57178 100644 --- a/.config/nvim/lua/plugins/typos.lua +++ b/.config/nvim/lua/plugins/typos.lua @@ -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" } }, + }, }