Compare commits
2 commits
42b8ebc10e
...
ccbd8fcc1e
Author | SHA1 | Date | |
---|---|---|---|
|
ccbd8fcc1e | ||
|
bb2570bf95 |
2 changed files with 7 additions and 0 deletions
|
@ -154,6 +154,7 @@
|
||||||
python3Packages.debugpy # Debug Adapter Protocol for Python
|
python3Packages.debugpy # Debug Adapter Protocol for Python
|
||||||
pyright # Python LSP
|
pyright # Python LSP
|
||||||
ruff # Extremely fast Python linter
|
ruff # Extremely fast Python linter
|
||||||
|
uv # Fast package manager
|
||||||
|
|
||||||
# C/C++
|
# C/C++
|
||||||
clang-tools # Clangd? LSP
|
clang-tools # Clangd? LSP
|
||||||
|
@ -177,6 +178,7 @@
|
||||||
delve # Go debugger
|
delve # Go debugger
|
||||||
templ # A language for writing HTML user interfaces in Go.
|
templ # A language for writing HTML user interfaces in Go.
|
||||||
golangci-lint # Fast linters Runner for Go
|
golangci-lint # Fast linters Runner for Go
|
||||||
|
graphviz # Graph visualisation tool
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
nixd # Nix LSP. Нет в mason
|
nixd # Nix LSP. Нет в mason
|
||||||
|
|
|
@ -308,10 +308,15 @@ return {
|
||||||
settings = {
|
settings = {
|
||||||
ltex = {
|
ltex = {
|
||||||
enabled = { 'bibtex', 'context', 'context.tex', 'html', 'latex', 'markdown', 'org', 'restructuredtext', 'rsweave', 'go' },
|
enabled = { 'bibtex', 'context', 'context.tex', 'html', 'latex', 'markdown', 'org', 'restructuredtext', 'rsweave', 'go' },
|
||||||
|
language = 'en',
|
||||||
additionalRules = {
|
additionalRules = {
|
||||||
enablePickyRules = true,
|
enablePickyRules = true,
|
||||||
motherTongue = 'ru-RU',
|
motherTongue = 'ru-RU',
|
||||||
},
|
},
|
||||||
|
disabledRules = {
|
||||||
|
['en'] = { 'EN_QUOTES', 'WORD_CONTAINS_UNDERSCORE', 'DASH_RULE', 'PUNCTUATION_PARAGRAPH_END' },
|
||||||
|
['ru-RU'] = { 'EN_QUOTES', 'WORD_CONTAINS_UNDERSCORE', 'DASH_RULE', 'PUNCTUATION_PARAGRAPH_END' },
|
||||||
|
},
|
||||||
-- languageToolHttpServerUri = 'http://localhost:8081/',
|
-- languageToolHttpServerUri = 'http://localhost:8081/',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue