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 = {},
|
tinymist = {},
|
||||||
html = {},
|
html = {},
|
||||||
cssls = {},
|
cssls = {},
|
||||||
|
tsserver = {},
|
||||||
clangd = {},
|
clangd = {},
|
||||||
bashls = {},
|
bashls = {},
|
||||||
|
cmake = {},
|
||||||
yamlls = {},
|
yamlls = {},
|
||||||
texlab = {},
|
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 = {
|
rust_analyzer = {
|
||||||
settings = {
|
settings = {
|
||||||
['rust-analyzer'] = {
|
['rust-analyzer'] = {
|
||||||
|
@ -209,11 +226,11 @@ local servers = {
|
||||||
-- load token and additional languagetool items later
|
-- load token and additional languagetool items later
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- languageToolOrg = {
|
languageToolOrg = {
|
||||||
-- apiKey = require 'custom.secret.languagetool',
|
apiKey = require 'custom.secret.languagetool',
|
||||||
-- username = 'accounts@cscherr.de',
|
username = 'accounts@cscherr.de',
|
||||||
-- languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
||||||
-- },
|
},
|
||||||
languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
languageToolHttpServerUrl = 'https://api.languagetoolplus.com/v2/',
|
||||||
},
|
},
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue