feat!(lsp): use ltex-plus instead of ltex

- BREAKING CHANGE: it is now required to install ltex-plus on the
  different machines
- Add some exceptions for `false friends` in English
This commit is contained in:
Fabrice Mouhartem 2025-02-25 11:35:45 +01:00
parent 86a58e267e
commit 623718af3a
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7
2 changed files with 44 additions and 34 deletions

View File

@ -100,39 +100,6 @@ local servers = {
eslint = {}, eslint = {},
-- html = { filetypes = { 'html', 'twig', 'hbs'} }, -- html = { filetypes = { 'html', 'twig', 'hbs'} },
texlab = {}, texlab = {},
ltex = {
filetypes = {
'markdown',
'latex',
'norg',
'gitcommit',
'jj',
'rst',
'typst'
},
ltex = {
language = "auto",
diagnosticSeverity = "information",
sentenceCacheSize = 2000,
additionalRules = {
enablePickyRules = true,
motherTongue = "fr",
},
enabledRules = {
en = { "EN_CONSISTENT_APOS" },
},
disabledRules = {
fr = { "APOS_TYP", "FRENCH_WHITESPACE", "CHANGE", "ISSUE" },
en = { "DASH_RULE", "TWO_HYPHENS", "CHANGE", "ISSUE" },
},
dictionary = {
fr = { "CryptPad", "Chouhartem",
-- field names
"authors", "categories", "created", "updated", "title", "meta" },
en = { "CryptPad", },
}
}
},
lua_ls = { lua_ls = {
Lua = { Lua = {
workspace = { checkThirdParty = false }, workspace = { checkThirdParty = false },
@ -187,6 +154,40 @@ servers = {
} }
}, },
gdscript = {}, gdscript = {},
ltex_plus = {
filetypes = {
'markdown',
'latex',
'norg',
'gitcommit',
'jj',
'rst',
'typst'
},
ltex = {
language = "auto",
diagnosticSeverity = "information",
sentenceCacheSize = 2000,
additionalRules = {
enablePickyRules = true,
motherTongue = "fr",
},
enabledRules = {
en = { "EN_CONSISTENT_APOS" },
},
disabledRules = {
fr = { "APOS_TYP", "FRENCH_WHITESPACE", "CHANGE", "ISSUE" },
en = { "DASH_RULE", "TWO_HYPHENS", "CHANGE", "ISSUE", "CHECK",
"ACTUALLY", "CONSISTENT" },
},
dictionary = {
fr = { "CryptPad", "Chouhartem",
-- field names
"authors", "categories", "created", "updated", "title", "meta" },
en = { "CryptPad", },
}
}
},
} }
for server_name, server_settings in pairs(servers) do for server_name, server_settings in pairs(servers) do
@ -194,6 +195,7 @@ for server_name, server_settings in pairs(servers) do
capabilities = capabilities, capabilities = capabilities,
on_attach = on_attach, on_attach = on_attach,
settings = server_settings, settings = server_settings,
filetypes = (servers[server_name] or {}).filetypes,
} }
end end

View File

@ -1,4 +1,4 @@
In this repository lies my Neovim configuration starting from In this repository lies my Nevis configuration starting from
[kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim). [kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim).
The provided `init.lua` file has then been split into (tentatively) semantically The provided `init.lua` file has then been split into (tentatively) semantically
@ -22,3 +22,11 @@ For instance, you can create clone this repository inside
```sh ```sh
export NVIM_APPNAME="$HOME/.config/kicknvim" export NVIM_APPNAME="$HOME/.config/kicknvim"
``` ```
## LSP dependencies
This configuration requires some LSP servers to be installed on your machine
(usually because its unavailable in `mason`). These packages are:
- `rust-analyzer`
- `ltex-ls-plus`