You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
481 B
23 lines
481 B
vim9script |
|
|
|
packadd lsp |
|
|
|
# C and C++ |
|
if executable("clangd") |
|
g:LspAddServer([{ |
|
name: 'clangd', |
|
filetype: ['c', 'cpp'], |
|
path: 'clangd', |
|
args: ['--background-index', '--clang-tidy'], |
|
}]) |
|
endif |
|
|
|
# Javascript/Typescript |
|
if executable("typescript-language-server") |
|
g:LspAddServer([{ |
|
name: 'tsserver', |
|
filetype: ['javascript', 'typescript'], |
|
path: 'typescript-language-server', |
|
args: ['--stdio'], |
|
}]) |
|
endif
|
|
|