Compare commits
No commits in common. "8ca7362bbb953573bfea31d448fb4af075d5af5a" and "422a7e329be391a1a420617143a80a77570797ee" have entirely different histories.
8ca7362bbb
...
422a7e329b
1 changed files with 22 additions and 5 deletions
|
@ -141,10 +141,27 @@ local servers = {
|
|||
tinymist = {},
|
||||
html = {},
|
||||
cssls = {},
|
||||
tsserver = {},
|
||||
clangd = {},
|
||||
bashls = {},
|
||||
cmake = {},
|
||||
yamlls = {},
|
||||
texlab = {},
|
||||
basedpyright = {
|
||||
root_dir = vim.loop.cwd,
|
||||
flags = { debounce_text_changes = 300 },
|
||||
single_file_support = true,
|
||||
settings = {
|
||||
python = {
|
||||
analysis = {
|
||||
autoSearchPaths = true,
|
||||
diagnosticMode = 'openFilesOnly',
|
||||
useLibraryCodeForTypes = true,
|
||||
typeCheckingMode = 'basic',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
rust_analyzer = {
|
||||
settings = {
|
||||
['rust-analyzer'] = {
|
||||
|
@ -209,11 +226,11 @@ local servers = {
|
|||
-- load token and additional languagetool items later
|
||||
},
|
||||
},
|
||||
-- languageToolOrg = {
|
||||
-- apiKey = require 'custom.secret.languagetool',
|
||||
-- username = 'accounts@cscherr.de',
|
||||
-- languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
||||
-- },
|
||||
languageToolOrg = {
|
||||
apiKey = require 'custom.secret.languagetool',
|
||||
username = 'accounts@cscherr.de',
|
||||
languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
||||
},
|
||||
languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
||||
},
|
||||
lua_ls = {
|
||||
|
|
Loading…
Add table
Reference in a new issue