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:
parent
86a58e267e
commit
623718af3a
68
lua/lsp.lua
68
lua/lsp.lua
@ -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
|
||||||
|
|
||||||
|
10
readme.md
10
readme.md
@ -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 it’s unavailable in `mason`). These packages are:
|
||||||
|
|
||||||
|
- `rust-analyzer`
|
||||||
|
- `ltex-ls-plus`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user