diff options
Diffstat (limited to '.config/nvim/lsp')
373 files changed, 10913 insertions, 0 deletions
diff --git a/.config/nvim/lsp/ada_ls.lua b/.config/nvim/lsp/ada_ls.lua new file mode 100644 index 0000000..eae327a --- /dev/null +++ b/.config/nvim/lsp/ada_ls.lua @@ -0,0 +1,31 @@ +---@brief +--- +--- https://github.com/AdaCore/ada_language_server +--- +--- Installation instructions can be found [here](https://github.com/AdaCore/ada_language_server#Install). +--- +--- Workspace-specific [settings](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) such as `projectFile` can be provided in a `.als.json` file at the root of the workspace. +--- Alternatively, configuration may be passed as a "settings" object to `vim.lsp.config('ada_ls', {})`: +--- +--- ```lua +--- vim.lsp.config('ada_ls', { +--- settings = { +--- ada = { +--- projectFile = "project.gpr"; +--- scenarioVariables = { ... }; +--- } +--- } +--- }) +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'ada_language_server' }, + filetypes = { 'ada' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('Makefile', '.git', 'alire.toml', '*.gpr', '*.adc')(fname)) + end, +} diff --git a/.config/nvim/lsp/agda_ls.lua b/.config/nvim/lsp/agda_ls.lua new file mode 100644 index 0000000..64ca652 --- /dev/null +++ b/.config/nvim/lsp/agda_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/agda/agda-language-server +--- +--- Language Server for Agda. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'als' }, + filetypes = { 'agda' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('.git', '*.agda-lib')(fname)) + end, +} diff --git a/.config/nvim/lsp/aiken.lua b/.config/nvim/lsp/aiken.lua new file mode 100644 index 0000000..8fb57b2 --- /dev/null +++ b/.config/nvim/lsp/aiken.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/aiken-lang/aiken +--- +--- A language server for Aiken Programming Language. +--- [Installation](https://aiken-lang.org/installation-instructions) +--- +--- It can be i + +---@type vim.lsp.Config +return { + cmd = { 'aiken', 'lsp' }, + filetypes = { 'aiken' }, + root_markers = { 'aiken.toml', '.git' }, +} diff --git a/.config/nvim/lsp/air.lua b/.config/nvim/lsp/air.lua new file mode 100644 index 0000000..47dbfc1 --- /dev/null +++ b/.config/nvim/lsp/air.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/posit-dev/air +--- +--- Air is an R formatter and language server, written in Rust. +--- +--- Refer to the [documentation](https://posit-dev.github.io/air/editors.html) for more details. + +---@type vim.lsp.Config +return { + cmd = { 'air', 'language-server' }, + filetypes = { 'r' }, + root_markers = { 'air.toml', '.air.toml', '.git' }, +} diff --git a/.config/nvim/lsp/alloy_ls.lua b/.config/nvim/lsp/alloy_ls.lua new file mode 100644 index 0000000..9fdf6da --- /dev/null +++ b/.config/nvim/lsp/alloy_ls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/AlloyTools/org.alloytools.alloy +--- +--- Alloy is a formal specification language for describing structures and a tool for exploring them. +--- +--- You may also need to configure the filetype for Alloy (*.als) files: +--- +--- ``` +--- autocmd BufNewFile,BufRead *.als set filetype=alloy +--- ``` +--- +--- or +--- +--- ```lua +--- vim.filetype.add({ +--- pattern = { +--- ['.*/*.als'] = 'alloy', +--- }, +--- }) +--- ``` +--- +--- Alternatively, you may use a syntax plugin like https://github.com/runoshun/vim-alloy. + +---@type vim.lsp.Config +return { + cmd = { 'alloy', 'lsp' }, + filetypes = { 'alloy' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/anakin_language_server.lua b/.config/nvim/lsp/anakin_language_server.lua new file mode 100644 index 0000000..6673683 --- /dev/null +++ b/.config/nvim/lsp/anakin_language_server.lua @@ -0,0 +1,71 @@ +---@brief +--- +--- https://pypi.org/project/anakin-language-server/ +--- +--- `anakin-language-server` is yet another Jedi Python language server. +--- +--- Available options: +--- +--- * Initialization: https://github.com/muffinmad/anakin-language-server#initialization-option +--- * Configuration: https://github.com/muffinmad/anakin-language-server#configuration-options + +---@type vim.lsp.Config +return { + cmd = { 'anakinls' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + '.git', + }, + settings = { + anakinls = { + pyflakes_errors = { + -- Full list: https://github.com/PyCQA/pyflakes/blob/master/pyflakes/messages.py + + 'ImportStarNotPermitted', + + 'UndefinedExport', + 'UndefinedLocal', + 'UndefinedName', + + 'DuplicateArgument', + 'MultiValueRepeatedKeyLiteral', + 'MultiValueRepeatedKeyVariable', + + 'FutureFeatureNotDefined', + 'LateFutureImport', + + 'ReturnOutsideFunction', + 'YieldOutsideFunction', + 'ContinueOutsideLoop', + 'BreakOutsideLoop', + + 'TwoStarredExpressions', + 'TooManyExpressionsInStarredAssignment', + + 'ForwardAnnotationSyntaxError', + 'RaiseNotImplemented', + + 'StringDotFormatExtraPositionalArguments', + 'StringDotFormatExtraNamedArguments', + 'StringDotFormatMissingArgument', + 'StringDotFormatMixingAutomatic', + 'StringDotFormatInvalidFormat', + + 'PercentFormatInvalidFormat', + 'PercentFormatMixedPositionalAndNamed', + 'PercentFormatUnsupportedFormat', + 'PercentFormatPositionalCountMismatch', + 'PercentFormatExtraNamedArguments', + 'PercentFormatMissingArgument', + 'PercentFormatExpectedMapping', + 'PercentFormatExpectedSequence', + 'PercentFormatStarRequiresSequence', + }, + }, + }, +} diff --git a/.config/nvim/lsp/angularls.lua b/.config/nvim/lsp/angularls.lua new file mode 100644 index 0000000..80b9d11 --- /dev/null +++ b/.config/nvim/lsp/angularls.lua @@ -0,0 +1,85 @@ +---@brief +--- +--- https://github.com/angular/vscode-ng-language-service +--- `angular-language-server` can be installed via npm `npm install -g @angular/language-server`. +--- +--- ```lua +--- local project_library_path = "/path/to/project/lib" +--- local cmd = {"ngserver", "--stdio", "--tsProbeLocations", project_library_path , "--ngProbeLocations", project_library_path} +--- +--- vim.lsp.config('angularls', { +--- cmd = cmd, +--- }) +--- ``` + +-- Angular requires a node_modules directory to probe for @angular/language-service and typescript +-- in order to use your projects configured versions. +local root_dir = vim.fn.getcwd() +local node_modules_dir = vim.fs.find('node_modules', { path = root_dir, upward = true })[1] +local project_root = node_modules_dir and vim.fs.dirname(node_modules_dir) or '?' + +local function get_probe_dir() + return project_root and (project_root .. '/node_modules') or '' +end + +local function get_angular_core_version() + if not project_root then + return '' + end + + local package_json = project_root .. '/package.json' + if not vim.uv.fs_stat(package_json) then + return '' + end + + local contents = io.open(package_json):read '*a' + local json = vim.json.decode(contents) + if not json.dependencies then + return '' + end + + local angular_core_version = json.dependencies['@angular/core'] + + angular_core_version = angular_core_version and angular_core_version:match('%d+%.%d+%.%d+') + + return angular_core_version +end + +local default_probe_dir = get_probe_dir() +local default_angular_core_version = get_angular_core_version() + +-- structure should be like +-- - $EXTENSION_PATH +-- - @angular +-- - language-server +-- - bin +-- - ngserver +-- - typescript +local ngserver_exe = vim.fn.exepath('ngserver') +local ngserver_path = #(ngserver_exe or '') > 0 and vim.fs.dirname(vim.uv.fs_realpath(ngserver_exe)) or '?' +local extension_path = vim.fs.normalize(vim.fs.joinpath(ngserver_path, '../../../')) + +-- angularls will get module by `require.resolve(PROBE_PATH, MODULE_NAME)` of nodejs +local ts_probe_dirs = vim.iter({ extension_path, default_probe_dir }):join(',') +local ng_probe_dirs = vim + .iter({ extension_path, default_probe_dir }) + :map(function(p) + return vim.fs.joinpath(p, '/@angular/language-server/node_modules') + end) + :join(',') + +---@type vim.lsp.Config +return { + cmd = { + 'ngserver', + '--stdio', + '--tsProbeLocations', + ts_probe_dirs, + '--ngProbeLocations', + ng_probe_dirs, + '--angularCoreVersion', + default_angular_core_version, + }, + filetypes = { 'typescript', 'html', 'typescriptreact', 'typescript.tsx', 'htmlangular' }, + root_markers = { 'angular.json', 'nx.json' }, +} diff --git a/.config/nvim/lsp/ansiblels.lua b/.config/nvim/lsp/ansiblels.lua new file mode 100644 index 0000000..db292c3 --- /dev/null +++ b/.config/nvim/lsp/ansiblels.lua @@ -0,0 +1,38 @@ +---@brief +--- +--- https://github.com/ansible/vscode-ansible +--- +--- Language server for the ansible configuration management tool. +--- +--- `ansible-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g @ansible/ansible-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ansible-language-server', '--stdio' }, + settings = { + ansible = { + python = { + interpreterPath = 'python', + }, + ansible = { + path = 'ansible', + }, + executionEnvironment = { + enabled = false, + }, + validation = { + enabled = true, + lint = { + enabled = true, + path = 'ansible-lint', + }, + }, + }, + }, + filetypes = { 'yaml.ansible' }, + root_markers = { 'ansible.cfg', '.ansible-lint' }, +} diff --git a/.config/nvim/lsp/antlersls.lua b/.config/nvim/lsp/antlersls.lua new file mode 100644 index 0000000..28777bf --- /dev/null +++ b/.config/nvim/lsp/antlersls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://www.npmjs.com/package/antlers-language-server +--- +--- `antlersls` can be installed via `npm`: +--- ```sh +--- npm install -g antlers-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'antlersls', '--stdio' }, + filetypes = { 'html', 'antlers' }, + root_markers = { 'composer.json' }, +} diff --git a/.config/nvim/lsp/apex_ls.lua b/.config/nvim/lsp/apex_ls.lua new file mode 100644 index 0000000..01616c9 --- /dev/null +++ b/.config/nvim/lsp/apex_ls.lua @@ -0,0 +1,59 @@ +--- @brief +--- +--- https://github.com/forcedotcom/salesforcedx-vscode +--- +--- Language server for Apex. +--- +--- For manual installation, download the JAR file from the [VSCode +--- extension](https://github.com/forcedotcom/salesforcedx-vscode/tree/develop/packages/salesforcedx-vscode-apex) and adjust the `apex_jar_path` appropriately. +--- +--- ```lua +--- vim.lsp.config('apex_ls', { +--- apex_jar_path = '/path/to/apex-jorje-lsp.jar', +--- apex_enable_semantic_errors = false, -- Whether to allow Apex Language Server to surface semantic errors +--- apex_enable_completion_statistics = false, -- Whether to allow Apex Language Server to collect telemetry on code completion usage +--- } +---``` +--- +--- Example configuration using Mason: +--- +---```lua +--- vim.lsp.config('apex_ls', { +--- apex_jar_path = vim.fn.stdpath('data') .. '/mason/share/apex-language-server/apex-jorje-lsp.jar', +--- } +---``` +--- +--- For a complete experience, you may need to ensure the treesitter parsers for 'apex' are installed (:TSInstall apex) as well as configure the filetype for apex (*.cls) files: +--- +--- ```lua +--- vim.filetype.add({ +--- pattern = { +--- ['.*/*.cls'] = 'apex', +--- }, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = function(dispatchers, config) + local local_cmd = { + vim.env.JAVA_HOME and (vim.env.JAVA_HOME .. '/bin/java') or 'java', + '-cp', + config.apex_jar_path, + '-Ddebug.internal.errors=true', + '-Ddebug.semantic.errors=' .. tostring(config.apex_enable_semantic_errors or false), + '-Ddebug.completion.statistics=' .. tostring(config.apex_enable_completion_statistics or false), + '-Dlwc.typegeneration.disabled=true', + } + if config.apex_jvm_max_heap then + table.insert(local_cmd, '-Xmx' .. config.apex_jvm_max_heap) + end + table.insert(local_cmd, 'apex.jorje.lsp.ApexLanguageServerLauncher') + + return vim.lsp.rpc.start(local_cmd, dispatchers) + end, + filetypes = { 'apex', 'apexcode' }, + root_markers = { + 'sfdx-project.json', + }, +} diff --git a/.config/nvim/lsp/arduino_language_server.lua b/.config/nvim/lsp/arduino_language_server.lua new file mode 100644 index 0000000..0feccd5 --- /dev/null +++ b/.config/nvim/lsp/arduino_language_server.lua @@ -0,0 +1,91 @@ +---@brief +--- +--- https://github.com/arduino/arduino-language-server +--- +--- Language server for Arduino +--- +--- The `arduino-language-server` can be installed by running: +--- +--- ``` +--- go install github.com/arduino/arduino-language-server@latest +--- ``` +--- +--- The `arduino-cli` tool must also be installed. Follow [these +--- installation instructions](https://arduino.github.io/arduino-cli/latest/installation/) for +--- your platform. +--- +--- After installing `arduino-cli`, follow [these +--- instructions](https://arduino.github.io/arduino-cli/latest/getting-started/#create-a-configuration-file) +--- for generating a configuration file if you haven't done so already, and make +--- sure you [install any relevant platforms +--- libraries](https://arduino.github.io/arduino-cli/latest/getting-started/#install-the-core-for-your-board). +--- +--- The language server also requires `clangd` to be installed. Follow [these +--- installation instructions](https://clangd.llvm.org/installation) for your +--- platform. +--- +--- If you don't have a sketch yet create one. +--- +--- ```sh +--- $ arduino-cli sketch new test +--- $ cd test +--- ``` +--- +--- You will need a `sketch.yaml` file in order for the language server to understand your project. It will also save you passing options to `arduino-cli` each time you compile or upload a file. You can generate the file by using the following commands. +--- +--- +--- First gather some information about your board. Make sure your board is connected and run the following: +--- +--- ```sh +--- $ arduino-cli board list +--- Port Protocol Type Board Name FQBN Core +--- /dev/ttyACM0 serial Serial Port (USB) Arduino Uno arduino:avr:uno arduino:avr +--- ``` +--- +--- Then generate the file: +--- +--- ```sh +--- arduino-cli board attach -p /dev/ttyACM0 -b arduino:avr:uno test.ino +--- ``` +--- +--- The resulting file should look like this: +--- +--- ```yaml +--- default_fqbn: arduino:avr:uno +--- default_port: /dev/ttyACM0 +--- ``` +--- +--- Your folder structure should look like this: +--- +--- ``` +--- . +--- ├── test.ino +--- └── sketch.yaml +--- ``` +--- +--- For further instructions about configuration options, run `arduino-language-server --help`. +--- +--- Note that an upstream bug makes keywords in some cases become undefined by the language server. +--- Ref: https://github.com/arduino/arduino-ide/issues/159 + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + filetypes = { 'arduino' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.ino')(fname)) + end, + cmd = { + 'arduino-language-server', + }, + capabilities = { + textDocument = { + semanticTokens = vim.NIL, + }, + workspace = { + semanticTokens = vim.NIL, + }, + }, +} diff --git a/.config/nvim/lsp/asm_lsp.lua b/.config/nvim/lsp/asm_lsp.lua new file mode 100644 index 0000000..28678c0 --- /dev/null +++ b/.config/nvim/lsp/asm_lsp.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/bergercookie/asm-lsp +--- +--- Language Server for NASM/GAS/GO Assembly +--- +--- `asm-lsp` can be installed via cargo: +--- cargo install asm-lsp + +---@type vim.lsp.Config +return { + cmd = { 'asm-lsp' }, + filetypes = { 'asm', 'vmasm' }, + root_markers = { '.asm-lsp.toml', '.git' }, +} diff --git a/.config/nvim/lsp/ast_grep.lua b/.config/nvim/lsp/ast_grep.lua new file mode 100644 index 0000000..0cf9e72 --- /dev/null +++ b/.config/nvim/lsp/ast_grep.lua @@ -0,0 +1,50 @@ +---@brief +--- +--- https://ast-grep.github.io/ +--- +--- ast-grep(sg) is a fast and polyglot tool for code structural search, lint, rewriting at large scale. +--- ast-grep LSP only works in projects that have `sgconfig.y[a]ml` in their root directories. +--- ```sh +--- npm install [-g] @ast-grep/cli +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ast-grep', 'lsp' }, + workspace_required = true, + reuse_client = function(client, config) + config.cmd_cwd = config.root_dir + return client.config.cmd_cwd == config.cmd_cwd + end, + filetypes = { -- https://ast-grep.github.io/reference/languages.html + 'bash', + 'c', + 'cpp', + 'csharp', + 'css', + 'elixir', + 'go', + 'haskell', + 'html', + 'java', + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'json', + 'kotlin', + 'lua', + 'nix', + 'php', + 'python', + 'ruby', + 'rust', + 'scala', + 'solidity', + 'swift', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + 'yaml', + }, + root_markers = { 'sgconfig.yaml', 'sgconfig.yml' }, +} diff --git a/.config/nvim/lsp/astro.lua b/.config/nvim/lsp/astro.lua new file mode 100644 index 0000000..a85aae3 --- /dev/null +++ b/.config/nvim/lsp/astro.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://github.com/withastro/language-tools/tree/main/packages/language-server +--- +--- `astro-ls` can be installed via `npm`: +--- ```sh +--- npm install -g @astrojs/language-server +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'astro-ls', '--stdio' }, + filetypes = { 'astro' }, + root_markers = { 'package.json', 'tsconfig.json', 'jsconfig.json', '.git' }, + init_options = { + typescript = {}, + }, + before_init = function(_, config) + if config.init_options and config.init_options.typescript and not config.init_options.typescript.tsdk then + config.init_options.typescript.tsdk = util.get_typescript_server_path(config.root_dir) + end + end, +} diff --git a/.config/nvim/lsp/atlas.lua b/.config/nvim/lsp/atlas.lua new file mode 100644 index 0000000..e54dbea --- /dev/null +++ b/.config/nvim/lsp/atlas.lua @@ -0,0 +1,66 @@ +---@brief +--- +--- https://github.com/ariga/atlas +--- +--- Language server for Atlas config and schema files. +--- +--- You may also need to configure the filetype for *.hcl files: +--- +--- ```vim +--- autocmd BufNewFile,BufRead atlas.hcl set filetype=atlas-config +--- autocmd BufNewFile,BufRead *.my.hcl set filetype=atlas-schema-mysql +--- autocmd BufNewFile,BufRead *.pg.hcl set filetype=atlas-schema-postgresql +--- autocmd BufNewFile,BufRead *.lt.hcl set filetype=atlas-schema-sqlite +--- autocmd BufNewFile,BufRead *.ch.hcl set filetype=atlas-schema-clickhouse +--- autocmd BufNewFile,BufRead *.ms.hcl set filetype=atlas-schema-mssql +--- autocmd BufNewFile,BufRead *.rs.hcl set filetype=atlas-schema-redshift +--- autocmd BufNewFile,BufRead *.test.hcl set filetype=atlas-test +--- autocmd BufNewFile,BufRead *.plan.hcl set filetype=atlas-plan +--- autocmd BufNewFile,BufRead *.rule.hcl set filetype=atlas-rule +--- ``` +--- +--- or +--- +--- ```lua +--- vim.filetype.add({ +--- filename = { +--- ['atlas.hcl'] = 'atlas-config', +--- }, +--- pattern = { +--- ['.*/*.my.hcl'] = 'atlas-schema-mysql', +--- ['.*/*.pg.hcl'] = 'atlas-schema-postgresql', +--- ['.*/*.lt.hcl'] = 'atlas-schema-sqlite', +--- ['.*/*.ch.hcl'] = 'atlas-schema-clickhouse', +--- ['.*/*.ms.hcl'] = 'atlas-schema-mssql', +--- ['.*/*.rs.hcl'] = 'atlas-schema-redshift', +--- ['.*/*.test.hcl'] = 'atlas-test', +--- ['.*/*.plan.hcl'] = 'atlas-plan', +--- ['.*/*.rule.hcl'] = 'atlas-rule', +--- }, +--- }) +--- ``` +--- +--- Optionally, tell treesitter to treat Atlas filetypes as HCL for better syntax highlighting: +--- +--- ```lua +--- vim.treesitter.language.register('hcl', 'atlas-config') +--- vim.treesitter.language.register('hcl', 'atlas-schema-mysql') +--- vim.treesitter.language.register('hcl', 'atlas-schema-postgresql') +--- vim.treesitter.language.register('hcl', 'atlas-schema-sqlite') +--- vim.treesitter.language.register('hcl', 'atlas-schema-clickhouse') +--- vim.treesitter.language.register('hcl', 'atlas-schema-mssql') +--- vim.treesitter.language.register('hcl', 'atlas-schema-redshift') +--- vim.treesitter.language.register('hcl', 'atlas-test') +--- vim.treesitter.language.register('hcl', 'atlas-plan') +--- vim.treesitter.language.register('hcl', 'atlas-rule') +--- ``` +--- + +---@type vim.lsp.Config +return { + cmd = { 'atlas', 'tool', 'lsp', '--stdio' }, + filetypes = { + 'atlas-*', + }, + root_markers = { 'atlas.hcl' }, +} diff --git a/.config/nvim/lsp/atopile.lua b/.config/nvim/lsp/atopile.lua new file mode 100644 index 0000000..6548b7e --- /dev/null +++ b/.config/nvim/lsp/atopile.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://atopile.io/ +--- +--- A language server for atopile Programming Language. +--- +--- It comes with the atopile compiler, for installation see: [Installing atopile](https://docs.atopile.io/atopile/guides/install) + +---@type vim.lsp.Config +return { + cmd = { 'ato', 'lsp', 'start' }, + filetypes = { 'ato' }, + root_markers = { 'ato.yaml', '.ato', '.git' }, +} diff --git a/.config/nvim/lsp/autohotkey_lsp.lua b/.config/nvim/lsp/autohotkey_lsp.lua new file mode 100644 index 0000000..cb92330 --- /dev/null +++ b/.config/nvim/lsp/autohotkey_lsp.lua @@ -0,0 +1,51 @@ +---@brief +--- +--- https://github.com/thqby/vscode-autohotkey2-lsp +--- +--- AutoHotkey v2.0 LSP implementation +--- +--- NOTE: AutoHotkey is Windows-only. + +local function get_autohotkey_path() + local path = vim.fn.exepath('autohotkey.exe') + return #path > 0 and path or '' +end + +---@type vim.lsp.Config +return { + cmd = { 'autohotkey_lsp', '--stdio' }, + filetypes = { 'autohotkey' }, + root_markers = { 'package.json' }, + flags = { debounce_text_changes = 500 }, + --capabilities = capabilities, + --on_attach = custom_attach, + init_options = { + locale = 'en-us', + InterpreterPath = get_autohotkey_path(), + AutoLibInclude = 'All', + CommentTags = '^;;\\s*(?<tag>.+)', + CompleteFunctionParens = false, + SymbolFoldinFromOpenBrace = false, + Diagnostics = { + ClassStaticMemberCheck = true, + ParamsCheck = true, + }, + ActionWhenV1IsDetected = 'Continue', + FormatOptions = { + array_style = 'expand', + break_chained_methods = false, + ignore_comment = false, + indent_string = '\t', + max_preserve_newlines = 2, + brace_style = 'One True Brace', + object_style = 'none', + preserve_newlines = true, + space_after_double_colon = true, + space_before_conditional = true, + space_in_empty_paren = false, + space_in_other = true, + space_in_paren = false, + wrap_line_length = 0, + }, + }, +} diff --git a/.config/nvim/lsp/autotools_ls.lua b/.config/nvim/lsp/autotools_ls.lua new file mode 100644 index 0000000..721c24c --- /dev/null +++ b/.config/nvim/lsp/autotools_ls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/Freed-Wu/autotools-language-server +--- +--- `autotools-language-server` can be installed via `pip`: +--- ```sh +--- pip install autotools-language-server +--- ``` +--- +--- Language server for autoconf, automake and make using tree sitter in python. + +local util = require 'lspconfig.util' + +local root_files = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' } + +---@type vim.lsp.Config +return { + cmd = { 'autotools-language-server' }, + filetypes = { 'config', 'automake', 'make' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern(unpack(root_files))(fname)) + end, +} diff --git a/.config/nvim/lsp/awk_ls.lua b/.config/nvim/lsp/awk_ls.lua new file mode 100644 index 0000000..7932913 --- /dev/null +++ b/.config/nvim/lsp/awk_ls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/Beaglefoot/awk-language-server/ +--- +--- `awk-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g awk-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'awk-language-server' }, + filetypes = { 'awk' }, +} diff --git a/.config/nvim/lsp/azure_pipelines_ls.lua b/.config/nvim/lsp/azure_pipelines_ls.lua new file mode 100644 index 0000000..2313ca4 --- /dev/null +++ b/.config/nvim/lsp/azure_pipelines_ls.lua @@ -0,0 +1,39 @@ +---@brief +--- +--- https://github.com/microsoft/azure-pipelines-language-server +--- +--- An Azure Pipelines language server +--- +--- `azure-pipelines-ls` can be installed via `npm`: +--- +--- ```sh +--- npm install -g azure-pipelines-language-server +--- ``` +--- +--- By default `azure-pipelines-ls` will only work in files named `azure-pipelines.yml`, this can be changed by providing additional settings like so: +--- ```lua +--- vim.lsp.config('azure_pipelines_ls', { +--- ... -- other configuration +--- settings = { +--- yaml = { +--- schemas = { +--- ["https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/master/service-schema.json"] = { +--- "/azure-pipeline*.y*l", +--- "/*.azure*", +--- "Azure-Pipelines/**/*.y*l", +--- "Pipelines/*.y*l", +--- }, +--- }, +--- }, +--- }, +--- }) +--- ``` +--- The Azure Pipelines LSP is a fork of `yaml-language-server` and as such the same settings can be passed to it as `yaml-language-server`. + +---@type vim.lsp.Config +return { + cmd = { 'azure-pipelines-language-server', '--stdio' }, + filetypes = { 'yaml' }, + root_markers = { 'azure-pipelines.yml' }, + settings = {}, +} diff --git a/.config/nvim/lsp/bacon_ls.lua b/.config/nvim/lsp/bacon_ls.lua new file mode 100644 index 0000000..44c5697 --- /dev/null +++ b/.config/nvim/lsp/bacon_ls.lua @@ -0,0 +1,47 @@ +---@brief +--- +--- https://github.com/crisidev/bacon-ls +--- +--- A Language Server Protocol wrapper for [bacon](https://dystroy.org/bacon/). +--- It offers textDocument/diagnostic and workspace/diagnostic capabilities for Rust +--- workspaces using the Bacon export locations file. +--- +--- It requires `bacon` and `bacon-ls` to be installed on the system using +--- [mason.nvim](https://github.com/williamboman/mason.nvim) or manually +--- +--- ```sh +--- $ cargo install --locked bacon bacon-ls +--- ``` +--- +--- Settings can be changed using the `init_options` dictionary:util +--- +--- ```lua +--- init_options = { +--- -- Bacon export filename (default: .bacon-locations). +--- locationsFile = ".bacon-locations", +--- -- Try to update diagnostics every time the file is saved (default: true). +--- updateOnSave = true, +--- -- How many milliseconds to wait before updating diagnostics after a save (default: 1000). +--- updateOnSaveWaitMillis = 1000, +--- -- Try to update diagnostics every time the file changes (default: true). +--- updateOnChange = true, +--- -- Try to validate that bacon preferences are setup correctly to work with bacon-ls (default: true). +--- validateBaconPreferences = true, +--- -- f no bacon preferences file is found, create a new preferences file with the bacon-ls job definition (default: true). +--- createBaconPreferencesFile = true, +--- -- Run bacon in background for the bacon-ls job (default: true) +--- runBaconInBackground = true, +--- -- Command line arguments to pass to bacon running in background (default "--headless -j bacon-ls") +--- runBaconInBackgroundCommandArguments = "--headless -j bacon-ls", +--- -- How many milliseconds to wait between background diagnostics check to synchronize all open files (default: 2000). +--- synchronizeAllOpenFilesWaitMillis = 2000, +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'bacon-ls' }, + filetypes = { 'rust' }, + root_markers = { '.bacon-locations', 'Cargo.toml' }, + init_options = {}, +} diff --git a/.config/nvim/lsp/ballerina.lua b/.config/nvim/lsp/ballerina.lua new file mode 100644 index 0000000..dbe8a7e --- /dev/null +++ b/.config/nvim/lsp/ballerina.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- Ballerina language server +--- +--- The Ballerina language's CLI tool comes with its own language server implementation. +--- The `bal` command line tool must be installed and available in your system's PATH. + +---@type vim.lsp.Config +return { + cmd = { 'bal', 'start-language-server' }, + filetypes = { 'ballerina' }, + root_markers = { 'Ballerina.toml' }, +} diff --git a/.config/nvim/lsp/basedpyright.lua b/.config/nvim/lsp/basedpyright.lua new file mode 100644 index 0000000..5f54c3d --- /dev/null +++ b/.config/nvim/lsp/basedpyright.lua @@ -0,0 +1,66 @@ +---@brief +--- +--- https://detachhead.github.io/basedpyright +--- +--- `basedpyright`, a static type checker and language server for python + +local function set_python_path(command) + local path = command.args + local clients = vim.lsp.get_clients { + bufnr = vim.api.nvim_get_current_buf(), + name = 'basedpyright', + } + for _, client in ipairs(clients) do + if client.settings then + client.settings.python = vim.tbl_deep_extend('force', client.settings.python or {}, { pythonPath = path }) + else + client.config.settings = vim.tbl_deep_extend('force', client.config.settings, { python = { pythonPath = path } }) + end + client:notify('workspace/didChangeConfiguration', { settings = nil }) + end +end + +---@type vim.lsp.Config +return { + cmd = { 'basedpyright-langserver', '--stdio' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + 'pyrightconfig.json', + '.git', + }, + settings = { + basedpyright = { + analysis = { + autoSearchPaths = true, + useLibraryCodeForTypes = true, + diagnosticMode = 'openFilesOnly', + }, + }, + }, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightOrganizeImports', function() + local params = { + command = 'basedpyright.organizeimports', + arguments = { vim.uri_from_bufnr(bufnr) }, + } + + -- Using client.request() directly because "basedpyright.organizeimports" is private + -- (not advertised via capabilities), which client:exec_cmd() refuses to call. + -- https://github.com/neovim/neovim/blob/c333d64663d3b6e0dd9aa440e433d346af4a3d81/runtime/lua/vim/lsp/client.lua#L1024-L1030 + client.request('workspace/executeCommand', params, nil, bufnr) + end, { + desc = 'Organize Imports', + }) + + vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightSetPythonPath', set_python_path, { + desc = 'Reconfigure basedpyright with the provided python path', + nargs = 1, + complete = 'file', + }) + end, +} diff --git a/.config/nvim/lsp/bashls.lua b/.config/nvim/lsp/bashls.lua new file mode 100644 index 0000000..fbd396a --- /dev/null +++ b/.config/nvim/lsp/bashls.lua @@ -0,0 +1,29 @@ +---@brief +--- +--- https://github.com/bash-lsp/bash-language-server +--- +--- `bash-language-server` can be installed via `npm`: +--- ```sh +--- npm i -g bash-language-server +--- ``` +--- +--- Language server for bash, written using tree sitter in typescript. + +---@type vim.lsp.Config +return { + cmd = { 'bash-language-server', 'start' }, + settings = { + bashIde = { + -- Glob pattern for finding and parsing shell script files in the workspace. + -- Used by the background analysis features across files. + + -- Prevent recursive scanning which will cause issues when opening a file + -- directly in the home directory (e.g. ~/foo.sh). + -- + -- Default upstream pattern is "**/*@(.sh|.inc|.bash|.command)". + globPattern = vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)', + }, + }, + filetypes = { 'bash', 'sh' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/basics_ls.lua b/.config/nvim/lsp/basics_ls.lua new file mode 100644 index 0000000..1810a92 --- /dev/null +++ b/.config/nvim/lsp/basics_ls.lua @@ -0,0 +1,27 @@ +---@brief +--- +--- https://github.com/antonk52/basics-language-server/ +--- +--- Buffer, path, and snippet completion +--- +--- ```sh +--- npm install -g basics-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'basics-language-server' }, + settings = { + buffer = { + enable = true, + minCompletionLength = 4, + }, + path = { + enable = true, + }, + snippet = { + enable = false, + sources = {}, + }, + }, +} diff --git a/.config/nvim/lsp/bazelrc_lsp.lua b/.config/nvim/lsp/bazelrc_lsp.lua new file mode 100644 index 0000000..6e6b89f --- /dev/null +++ b/.config/nvim/lsp/bazelrc_lsp.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://github.com/salesforce-misc/bazelrc-lsp +--- +--- `bazelrc-lsp` is a LSP for `.bazelrc` configuration files. +--- +--- The `.bazelrc` file type is not detected automatically, you can register it manually (see below) or override the filetypes: +--- +--- ```lua +--- vim.filetype.add { +--- pattern = { +--- ['.*.bazelrc'] = 'bazelrc', +--- }, +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'bazelrc-lsp', 'lsp' }, + filetypes = { 'bazelrc' }, + root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' }, +} diff --git a/.config/nvim/lsp/beancount.lua b/.config/nvim/lsp/beancount.lua new file mode 100644 index 0000000..bb53a76 --- /dev/null +++ b/.config/nvim/lsp/beancount.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/polarmutex/beancount-language-server#installation +--- +--- See https://github.com/polarmutex/beancount-language-server#configuration for configuration options + +---@type vim.lsp.Config +return { + cmd = { 'beancount-language-server', '--stdio' }, + filetypes = { 'beancount', 'bean' }, + root_markers = { '.git' }, + init_options = {}, +} diff --git a/.config/nvim/lsp/bicep.lua b/.config/nvim/lsp/bicep.lua new file mode 100644 index 0000000..4e6e215 --- /dev/null +++ b/.config/nvim/lsp/bicep.lua @@ -0,0 +1,40 @@ +---@brief +--- +--- https://github.com/azure/bicep +--- Bicep language server +--- +--- Bicep language server can be installed by downloading and extracting a release of bicep-langserver.zip from [Bicep GitHub releases](https://github.com/Azure/bicep/releases). +--- +--- Bicep language server requires the [dotnet-sdk](https://dotnet.microsoft.com/download) to be installed. +--- +--- Neovim does not have built-in support for the bicep filetype which is required for lspconfig to automatically launch the language server. +--- +--- Filetype detection can be added via an autocmd: +--- ```lua +--- vim.cmd [[ autocmd BufNewFile,BufRead *.bicep set filetype=bicep ]] +--- ``` +--- +--- **By default, bicep language server does not have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of the unzipped run script or binary. +--- +--- ```lua +--- local bicep_lsp_bin = "/path/to/bicep-langserver/Bicep.LangServer.dll" +--- vim.lsp.config('bicep', { +--- cmd = { "dotnet", bicep_lsp_bin }; +--- ... +--- }) +--- ``` +--- +--- To download the latest release and place in /usr/local/bin/bicep-langserver: +--- ```bash +--- (cd $(mktemp -d) \ +--- && curl -fLO https://github.com/Azure/bicep/releases/latest/download/bicep-langserver.zip \ +--- && rm -rf /usr/local/bin/bicep-langserver \ +--- && unzip -d /usr/local/bin/bicep-langserver bicep-langserver.zip) +--- ``` + +---@type vim.lsp.Config +return { + filetypes = { 'bicep', 'bicep-params' }, + root_markers = { '.git' }, + init_options = {}, +} diff --git a/.config/nvim/lsp/biome.lua b/.config/nvim/lsp/biome.lua new file mode 100644 index 0000000..a134347 --- /dev/null +++ b/.config/nvim/lsp/biome.lua @@ -0,0 +1,72 @@ +---@brief +--- https://biomejs.dev +--- +--- Toolchain of the web. [Successor of Rome](https://biomejs.dev/blog/annoucing-biome). +--- +--- ```sh +--- npm install [-g] @biomejs/biome +--- ``` +--- +--- ### Monorepo support +--- +--- `biome` supports monorepos by default. It will automatically find the `biome.json` corresponding to the package you are working on, as described in the [documentation](https://biomejs.dev/guides/big-projects/#monorepo). This works without the need of spawning multiple instances of `biome`, saving memory. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = function(dispatchers, config) + local cmd = 'biome' + local local_cmd = (config or {}).root_dir and config.root_dir .. '/node_modules/.bin/biome' + if local_cmd and vim.fn.executable(local_cmd) == 1 then + cmd = local_cmd + end + return vim.lsp.rpc.start({ cmd, 'lsp-proxy' }, dispatchers) + end, + filetypes = { + 'astro', + 'css', + 'graphql', + 'html', + 'javascript', + 'javascriptreact', + 'json', + 'jsonc', + 'svelte', + 'typescript', + 'typescript.tsx', + 'typescriptreact', + 'vue', + }, + workspace_required = true, + root_dir = function(bufnr, on_dir) + -- The project root is where the LSP can be started from + -- As stated in the documentation above, this LSP supports monorepos and simple projects. + -- We select then from the project root, which is identified by the presence of a package + -- manager lock file. + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } + -- Give the root markers equal priority by wrapping them in a table + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + + -- We know that the buffer is using Biome if it has a config file + -- in its directory tree. + local filename = vim.api.nvim_buf_get_name(bufnr) + local biome_config_files = { 'biome.json', 'biome.jsonc' } + biome_config_files = util.insert_package_json(biome_config_files, 'biome', filename) + local is_buffer_using_biome = vim.fs.find(biome_config_files, { + path = filename, + type = 'file', + limit = 1, + upward = true, + stop = vim.fs.dirname(project_root), + })[1] + if not is_buffer_using_biome then + return + end + + on_dir(project_root) + end, +} diff --git a/.config/nvim/lsp/bitbake_language_server.lua b/.config/nvim/lsp/bitbake_language_server.lua new file mode 100644 index 0000000..846db07 --- /dev/null +++ b/.config/nvim/lsp/bitbake_language_server.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/Freed-Wu/bitbake-language-server +--- +--- `bitbake-language-server` can be installed via `pip`: +--- ```sh +--- pip install bitbake-language-server +--- ``` +--- +--- Language server for bitbake. + +---@type vim.lsp.Config +return { + cmd = { 'bitbake-language-server' }, + filetypes = { 'bitbake' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/blueprint_ls.lua b/.config/nvim/lsp/blueprint_ls.lua new file mode 100644 index 0000000..3721f6a --- /dev/null +++ b/.config/nvim/lsp/blueprint_ls.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://gitlab.gnome.org/jwestman/blueprint-compiler +--- +--- `blueprint-compiler` can be installed via your system package manager. +--- +--- Language server for the blueprint markup language, written in python and part +--- of the blueprint-compiler. + +---@type vim.lsp.Config +return { + cmd = { 'blueprint-compiler', 'lsp' }, + cmd_env = { + -- Prevent recursive scanning which will cause issues when opening a file + -- directly in the home directory (e.g. ~/foo.sh). + -- + -- Default upstream pattern is "**/*@(.sh|.inc|.bash|.command)". + GLOB_PATTERN = vim.env.GLOB_PATTERN or '*@(.blp)', + }, + filetypes = { 'blueprint' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/bqls.lua b/.config/nvim/lsp/bqls.lua new file mode 100644 index 0000000..cad3cd2 --- /dev/null +++ b/.config/nvim/lsp/bqls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/kitagry/bqls +--- +--- The `bqls` BigQuery language server can be installed by running: +--- +--- ```sh +--- $ go install github.com/kitagry/bqls@latest +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'bqls' }, + filetypes = { 'sql' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/bright_script.lua b/.config/nvim/lsp/bright_script.lua new file mode 100644 index 0000000..0f56417 --- /dev/null +++ b/.config/nvim/lsp/bright_script.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/RokuCommunity/brighterscript +--- +--- `brightscript` can be installed via `npm`: +--- ```sh +--- npm install -g brighterscript +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'bsc', '--lsp', '--stdio' }, + filetypes = { 'brs' }, + root_markers = { 'makefile', 'Makefile', '.git' }, +} diff --git a/.config/nvim/lsp/bsl_ls.lua b/.config/nvim/lsp/bsl_ls.lua new file mode 100644 index 0000000..1ab35f5 --- /dev/null +++ b/.config/nvim/lsp/bsl_ls.lua @@ -0,0 +1,11 @@ +---@brief +--- +--- https://github.com/1c-syntax/bsl-language-server +--- +--- Language Server Protocol implementation for 1C (BSL) - 1C:Enterprise 8 and OneScript languages. + +---@type vim.lsp.Config +return { + filetypes = { 'bsl', 'os' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/buck2.lua b/.config/nvim/lsp/buck2.lua new file mode 100644 index 0000000..7bc5d25 --- /dev/null +++ b/.config/nvim/lsp/buck2.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://github.com/facebook/buck2 +--- +--- Build system, successor to Buck +--- +--- To better detect Buck2 project files, the following can be added: +--- +--- ``` +--- vim.cmd [[ autocmd BufRead,BufNewFile *.bxl,BUCK,TARGETS set filetype=bzl ]] +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'buck2', 'lsp' }, + filetypes = { 'bzl' }, + root_markers = { '.buckconfig' }, +} diff --git a/.config/nvim/lsp/buddy_ls.lua b/.config/nvim/lsp/buddy_ls.lua new file mode 100644 index 0000000..dc82439 --- /dev/null +++ b/.config/nvim/lsp/buddy_ls.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/buddy-compiler/buddy-mlir#buddy-lsp-server +--- The Language Server for the buddy-mlir, a drop-in replacement for mlir-lsp-server, +--- supporting new dialects defined in buddy-mlir. +--- `buddy-lsp-server` can be installed at the buddy-mlir repository (buddy-compiler/buddy-mlir) + +---@type vim.lsp.Config +return { + cmd = { 'buddy-lsp-server' }, + filetypes = { 'mlir' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/buf_ls.lua b/.config/nvim/lsp/buf_ls.lua new file mode 100644 index 0000000..75c0b44 --- /dev/null +++ b/.config/nvim/lsp/buf_ls.lua @@ -0,0 +1,13 @@ +--- @brief +--- https://github.com/bufbuild/buf +--- +--- buf beta lsp included in the cli itself +--- +--- buf beta lsp is a Protobuf language server compatible with Buf modules and workspaces + +---@type vim.lsp.Config +return { + cmd = { 'buf', 'beta', 'lsp', '--timeout=0', '--log-format=text' }, + filetypes = { 'proto' }, + root_markers = { 'buf.yaml', '.git' }, +} diff --git a/.config/nvim/lsp/bufls.lua b/.config/nvim/lsp/bufls.lua new file mode 100644 index 0000000..e7dc52f --- /dev/null +++ b/.config/nvim/lsp/bufls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/bufbuild/buf-language-server +--- +--- `buf-language-server` can be installed via `go install`: +--- ```sh +--- go install github.com/bufbuild/buf-language-server/cmd/bufls@latest +--- ``` +--- +--- bufls is a Protobuf language server compatible with Buf modules and workspaces + +---@type vim.lsp.Config +return { + cmd = { 'bufls', 'serve' }, + filetypes = { 'proto' }, + root_markers = { 'buf.work.yaml', '.git' }, +} diff --git a/.config/nvim/lsp/bzl.lua b/.config/nvim/lsp/bzl.lua new file mode 100644 index 0000000..7dc1dfe --- /dev/null +++ b/.config/nvim/lsp/bzl.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://bzl.io/ +--- +--- https://docs.stack.build/docs/cli/installation +--- +--- https://docs.stack.build/docs/vscode/starlark-language-server + +---@type vim.lsp.Config +return { + cmd = { 'bzl', 'lsp', 'serve' }, + filetypes = { 'bzl' }, + -- https://docs.bazel.build/versions/5.4.1/build-ref.html#workspace + root_markers = { 'WORKSPACE', 'WORKSPACE.bazel' }, +} diff --git a/.config/nvim/lsp/c3_lsp.lua b/.config/nvim/lsp/c3_lsp.lua new file mode 100644 index 0000000..0ea9522 --- /dev/null +++ b/.config/nvim/lsp/c3_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/pherrymason/c3-lsp +--- +--- Language Server for c3. + +---@type vim.lsp.Config +return { + cmd = { 'c3lsp' }, + root_markers = { 'project.json', 'manifest.json', '.git' }, + filetypes = { 'c3', 'c3i' }, +} diff --git a/.config/nvim/lsp/cairo_ls.lua b/.config/nvim/lsp/cairo_ls.lua new file mode 100644 index 0000000..7489245 --- /dev/null +++ b/.config/nvim/lsp/cairo_ls.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- [Cairo Language Server](https://github.com/starkware-libs/cairo/tree/main/crates/cairo-lang-language-server) +--- +--- First, install Cairo following [this tutorial](https://book.cairo-lang.org/ch01-01-installation.html) +--- +--- Then enable Cairo Language Server in your Lua configuration. +--- ```lua +--- vim.lsp.enable('cairo_ls') +--- ``` +--- +--- *cairo-language-server is still under active development, some features might not work yet !* + +---@type vim.lsp.Config +return { + init_options = { hostInfo = 'neovim' }, + cmd = { 'scarb', 'cairo-language-server', '/C', '--node-ipc' }, + filetypes = { 'cairo' }, + root_markers = { 'Scarb.toml', 'cairo_project.toml', '.git' }, +} diff --git a/.config/nvim/lsp/ccls.lua b/.config/nvim/lsp/ccls.lua new file mode 100644 index 0000000..44268df --- /dev/null +++ b/.config/nvim/lsp/ccls.lua @@ -0,0 +1,53 @@ +---@brief +--- +--- https://github.com/MaskRay/ccls/wiki +--- +--- ccls relies on a [JSON compilation database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) specified +--- as compile_commands.json or, for simpler projects, a .ccls. +--- For details on how to automatically generate one using CMake look [here](https://cmake.org/cmake/help/latest/variable/CMAKE_EXPORT_COMPILE_COMMANDS.html). Alternatively, you can use [Bear](https://github.com/rizsotto/Bear). +--- +--- Customization options are passed to ccls at initialization time via init_options, a list of available options can be found [here](https://github.com/MaskRay/ccls/wiki/Customization#initialization-options). For example: +--- +--- ```lua +--- vim.lsp.config("ccls", { +--- init_options = { +--- compilationDatabaseDirectory = "build"; +--- index = { +--- threads = 0; +--- }; +--- clang = { +--- excludeArgs = { "-frounding-math"} ; +--- }; +--- } +--- }) +--- ``` + +local function switch_source_header(client, bufnr) + local method_name = 'textDocument/switchSourceHeader' + local params = vim.lsp.util.make_text_document_params(bufnr) + client:request(method_name, params, function(err, result) + if err then + error(tostring(err)) + end + if not result then + vim.notify('corresponding file cannot be determined') + return + end + vim.cmd.edit(vim.uri_to_fname(result)) + end, bufnr) +end + +---@type vim.lsp.Config +return { + cmd = { 'ccls' }, + filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'cuda' }, + root_markers = { 'compile_commands.json', '.ccls', '.git' }, + offset_encoding = 'utf-32', + -- ccls does not support sending a null root directory + workspace_required = true, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspCclsSwitchSourceHeader', function() + switch_source_header(client, bufnr) + end, { desc = 'Switch between source/header' }) + end, +} diff --git a/.config/nvim/lsp/cds_lsp.lua b/.config/nvim/lsp/cds_lsp.lua new file mode 100644 index 0000000..12bfab7 --- /dev/null +++ b/.config/nvim/lsp/cds_lsp.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://cap.cloud.sap/docs/ +--- +--- `cds-lsp` can be installed via `npm`: +--- +--- ```sh +--- npm i -g @sap/cds-lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'cds-lsp', '--stdio' }, + filetypes = { 'cds' }, + -- init_options = { provideFormatter = true }, -- needed to enable formatting capabilities + root_markers = { 'package.json', 'db', 'srv' }, + settings = { + cds = { validate = true }, + }, +} diff --git a/.config/nvim/lsp/cir_lsp_server.lua b/.config/nvim/lsp/cir_lsp_server.lua new file mode 100644 index 0000000..15b887f --- /dev/null +++ b/.config/nvim/lsp/cir_lsp_server.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://llvm.github.io/clangir +--- +--- The Language Server for the LLVM ClangIR language +--- +--- `cir-lsp-server` can be installed at the llvm-project repository (https://github.com/llvm/llvm-project) + +---@type vim.lsp.Config +return { + cmd = { 'cir-lsp-server' }, + filetypes = { 'cir' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/circom-lsp.lua b/.config/nvim/lsp/circom-lsp.lua new file mode 100644 index 0000000..c3bb8a4 --- /dev/null +++ b/.config/nvim/lsp/circom-lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- [Circom Language Server](https://github.com/rubydusa/circom-lsp) +--- +--- `circom-lsp`, the language server for the Circom language. + +---@type vim.lsp.Config +return { + cmd = { 'circom-lsp' }, + filetypes = { 'circom' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/clangd.lua b/.config/nvim/lsp/clangd.lua new file mode 100644 index 0000000..07ad347 --- /dev/null +++ b/.config/nvim/lsp/clangd.lua @@ -0,0 +1,100 @@ +---@brief +--- +--- https://clangd.llvm.org/installation.html +--- +--- - **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lspconfig/issues/23). +--- - If `compile_commands.json` lives in a build directory, you should +--- symlink it to the root of your source tree. +--- ``` +--- ln -s /path/to/myproject/build/compile_commands.json /path/to/myproject/ +--- ``` +--- - clangd relies on a [JSON compilation database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) +--- specified as compile_commands.json, see https://clangd.llvm.org/installation#compile_commandsjson + +-- https://clangd.llvm.org/extensions.html#switch-between-sourceheader +local function switch_source_header(bufnr, client) + local method_name = 'textDocument/switchSourceHeader' + ---@diagnostic disable-next-line:param-type-mismatch + if not client or not client:supports_method(method_name) then + return vim.notify(('method %s is not supported by any servers active on the current buffer'):format(method_name)) + end + local params = vim.lsp.util.make_text_document_params(bufnr) + ---@diagnostic disable-next-line:param-type-mismatch + client:request(method_name, params, function(err, result) + if err then + error(tostring(err)) + end + if not result then + vim.notify('corresponding file cannot be determined') + return + end + vim.cmd.edit(vim.uri_to_fname(result)) + end, bufnr) +end + +local function symbol_info(bufnr, client) + local method_name = 'textDocument/symbolInfo' + ---@diagnostic disable-next-line:param-type-mismatch + if not client or not client:supports_method(method_name) then + return vim.notify('Clangd client not found', vim.log.levels.ERROR) + end + local win = vim.api.nvim_get_current_win() + local params = vim.lsp.util.make_position_params(win, client.offset_encoding) + ---@diagnostic disable-next-line:param-type-mismatch + client:request(method_name, params, function(err, res) + if err or #res == 0 then + -- Clangd always returns an error, there is no reason to parse it + return + end + local container = string.format('container: %s', res[1].containerName) ---@type string + local name = string.format('name: %s', res[1].name) ---@type string + vim.lsp.util.open_floating_preview({ name, container }, '', { + height = 2, + width = math.max(string.len(name), string.len(container)), + focusable = false, + focus = false, + title = 'Symbol Info', + }) + end, bufnr) +end + +---@class ClangdInitializeResult: lsp.InitializeResult +---@field offsetEncoding? string + +---@type vim.lsp.Config +return { + cmd = { 'clangd' }, + filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'cuda' }, + root_markers = { + '.clangd', + '.clang-tidy', + '.clang-format', + 'compile_commands.json', + 'compile_flags.txt', + 'configure.ac', -- AutoTools + '.git', + }, + capabilities = { + textDocument = { + completion = { + editsNearCursor = true, + }, + }, + offsetEncoding = { 'utf-8', 'utf-16' }, + }, + ---@param init_result ClangdInitializeResult + on_init = function(client, init_result) + if init_result.offsetEncoding then + client.offset_encoding = init_result.offsetEncoding + end + end, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspClangdSwitchSourceHeader', function() + switch_source_header(bufnr, client) + end, { desc = 'Switch between source/header' }) + + vim.api.nvim_buf_create_user_command(bufnr, 'LspClangdShowSymbolInfo', function() + symbol_info(bufnr, client) + end, { desc = 'Show symbol info' }) + end, +} diff --git a/.config/nvim/lsp/clarinet.lua b/.config/nvim/lsp/clarinet.lua new file mode 100644 index 0000000..be93d8a --- /dev/null +++ b/.config/nvim/lsp/clarinet.lua @@ -0,0 +1,11 @@ +---@brief +--- https://github.com/hirosystems/clarinet +--- +--- Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain. + +---@type vim.lsp.Config +return { + cmd = { 'clarinet', 'lsp' }, + filetypes = { 'clar', 'clarity' }, + root_markers = { 'Clarinet.toml' }, +} diff --git a/.config/nvim/lsp/clojure_lsp.lua b/.config/nvim/lsp/clojure_lsp.lua new file mode 100644 index 0000000..f60ee38 --- /dev/null +++ b/.config/nvim/lsp/clojure_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/clojure-lsp/clojure-lsp +--- +--- Clojure Language Server + +---@type vim.lsp.Config +return { + cmd = { 'clojure-lsp' }, + filetypes = { 'clojure', 'edn' }, + root_markers = { 'project.clj', 'deps.edn', 'build.boot', 'shadow-cljs.edn', '.git', 'bb.edn' }, +} diff --git a/.config/nvim/lsp/cmake.lua b/.config/nvim/lsp/cmake.lua new file mode 100644 index 0000000..38fa06a --- /dev/null +++ b/.config/nvim/lsp/cmake.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/regen100/cmake-language-server +--- +--- CMake LSP Implementation + +---@type vim.lsp.Config +return { + cmd = { 'cmake-language-server' }, + filetypes = { 'cmake' }, + root_markers = { 'CMakePresets.json', 'CTestConfig.cmake', '.git', 'build', 'cmake' }, + init_options = { + buildDirectory = 'build', + }, +} diff --git a/.config/nvim/lsp/cobol_ls.lua b/.config/nvim/lsp/cobol_ls.lua new file mode 100644 index 0000000..a763ed6 --- /dev/null +++ b/.config/nvim/lsp/cobol_ls.lua @@ -0,0 +1,10 @@ +---@brief +--- +--- Cobol language support + +---@type vim.lsp.Config +return { + cmd = { 'cobol-language-support' }, + filetypes = { 'cobol' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/codebook.lua b/.config/nvim/lsp/codebook.lua new file mode 100644 index 0000000..dea265c --- /dev/null +++ b/.config/nvim/lsp/codebook.lua @@ -0,0 +1,37 @@ +---@brief +--- +--- https://github.com/blopker/codebook +--- +--- An unholy spell checker for code. +--- +--- `codebook-lsp` can be installed by following the instructions [here](https://github.com/blopker/codebook/blob/main/README.md#installation). +--- +--- The default `cmd` assumes that the `codebook-lsp` binary can be found in `$PATH`. +--- + +---@type vim.lsp.Config +return { + cmd = { 'codebook-lsp', 'serve' }, + filetypes = { + 'c', + 'css', + 'gitcommit', + 'go', + 'haskell', + 'html', + 'java', + 'javascript', + 'javascriptreact', + 'lua', + 'markdown', + 'php', + 'python', + 'ruby', + 'rust', + 'toml', + 'text', + 'typescript', + 'typescriptreact', + }, + root_markers = { '.git', 'codebook.toml', '.codebook.toml' }, +} diff --git a/.config/nvim/lsp/coffeesense.lua b/.config/nvim/lsp/coffeesense.lua new file mode 100644 index 0000000..aeaa2c2 --- /dev/null +++ b/.config/nvim/lsp/coffeesense.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/phil294/coffeesense +--- +--- CoffeeSense Language Server +--- `coffeesense-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g coffeesense-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'coffeesense-language-server', '--stdio' }, + filetypes = { 'coffee' }, + root_markers = { 'package.json' }, +} diff --git a/.config/nvim/lsp/contextive.lua b/.config/nvim/lsp/contextive.lua new file mode 100644 index 0000000..3cca333 --- /dev/null +++ b/.config/nvim/lsp/contextive.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/dev-cycles/contextive +--- +--- Language Server for Contextive. +--- +--- Contextive allows you to define terms in a central file and provides auto-completion suggestions and hover panels for these terms wherever they're used. +--- +--- To install the language server, you need to download the appropriate [GitHub release asset](https://github.com/dev-cycles/contextive/releases/) for your operating system and architecture. +--- +--- After the download unzip the Contextive.LanguageServer binary and copy the file into a folder that is included in your system's PATH. + +---@type vim.lsp.Config +return { + cmd = { 'Contextive.LanguageServer' }, + root_markers = { '.contextive', '.git' }, +} diff --git a/.config/nvim/lsp/copilot.lua b/.config/nvim/lsp/copilot.lua new file mode 100644 index 0000000..66c2dd5 --- /dev/null +++ b/.config/nvim/lsp/copilot.lua @@ -0,0 +1,135 @@ +---@brief +--- +--- https://www.npmjs.com/package/@github/copilot-language-server +--- +--- The Copilot Language Server enables any editor or IDE +--- to integrate with GitHub Copilot via +--- [the language server protocol](https://microsoft.github.io/language-server-protocol/). +--- +--- **[GitHub Copilot](https://github.com/features/copilot)** +--- is an AI pair programmer tool that helps you write code faster and smarter. +--- +--- **Sign up for [GitHub Copilot Free](https://github.com/settings/copilot)!** +--- +--- Please see [terms of use for GitHub Copilot](https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features#github-copilot) +--- +--- You need to enable `:help lsp-inline-completion` to receive suggestions. For example, you can enable it in the LspAttach event: +--- +--- ```lua +--- vim.api.nvim_create_autocmd('LspAttach', { +--- callback = function(args) +--- local bufnr = args.buf +--- local client = assert(vim.lsp.get_client_by_id(args.data.client_id)) +--- +--- if client:supports_method(vim.lsp.protocol.Methods.textDocument_inlineCompletion, bufnr) then +--- vim.lsp.inline_completion.enable(true, { bufnr = bufnr }) +--- +--- vim.keymap.set( +--- 'i', +--- '<C-F>', +--- vim.lsp.inline_completion.get, +--- { desc = 'LSP: accept inline completion', buffer = bufnr } +--- ) +--- vim.keymap.set( +--- 'i', +--- '<C-G>', +--- vim.lsp.inline_completion.select, +--- { desc = 'LSP: switch inline completion', buffer = bufnr } +--- ) +--- end +--- end +--- }) +--- ``` + +---@param bufnr integer, +---@param client vim.lsp.Client +local function sign_in(bufnr, client) + client:request( + ---@diagnostic disable-next-line: param-type-mismatch + 'signIn', + vim.empty_dict(), + function(err, result) + if err then + vim.notify(err.message, vim.log.levels.ERROR) + return + end + if result.command then + local code = result.userCode + local command = result.command + vim.fn.setreg('+', code) + vim.fn.setreg('*', code) + local continue = vim.fn.confirm( + 'Copied your one-time code to clipboard.\n' .. 'Open the browser to complete the sign-in process?', + '&Yes\n&No' + ) + if continue == 1 then + client:exec_cmd(command, { bufnr = bufnr }, function(cmd_err, cmd_result) + if cmd_err then + vim.notify(err.message, vim.log.levels.ERROR) + return + end + if cmd_result.status == 'OK' then + vim.notify('Signed in as ' .. cmd_result.user .. '.') + end + end) + end + end + + if result.status == 'PromptUserDeviceFlow' then + vim.notify('Enter your one-time code ' .. result.userCode .. ' in ' .. result.verificationUri) + elseif result.status == 'AlreadySignedIn' then + vim.notify('Already signed in as ' .. result.user .. '.') + end + end + ) +end + +---@param client vim.lsp.Client +local function sign_out(_, client) + client:request( + ---@diagnostic disable-next-line: param-type-mismatch + 'signOut', + vim.empty_dict(), + function(err, result) + if err then + vim.notify(err.message, vim.log.levels.ERROR) + return + end + if result.status == 'NotSignedIn' then + vim.notify('Not signed in.') + end + end + ) +end + +---@type vim.lsp.Config +return { + cmd = { + 'copilot-language-server', + '--stdio', + }, + root_markers = { '.git' }, + init_options = { + editorInfo = { + name = 'Neovim', + version = tostring(vim.version()), + }, + editorPluginInfo = { + name = 'Neovim', + version = tostring(vim.version()), + }, + }, + settings = { + telemetry = { + telemetryLevel = 'all', + }, + }, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspCopilotSignIn', function() + sign_in(bufnr, client) + end, { desc = 'Sign in Copilot with GitHub' }) + vim.api.nvim_buf_create_user_command(bufnr, 'LspCopilotSignOut', function() + sign_out(bufnr, client) + end, { desc = 'Sign out Copilot with GitHub' }) + end, +} diff --git a/.config/nvim/lsp/coq_lsp.lua b/.config/nvim/lsp/coq_lsp.lua new file mode 100644 index 0000000..e8dc76f --- /dev/null +++ b/.config/nvim/lsp/coq_lsp.lua @@ -0,0 +1,10 @@ +---@brief +--- +--- https://github.com/ejgallego/coq-lsp/ + +---@type vim.lsp.Config +return { + cmd = { 'coq-lsp' }, + filetypes = { 'coq' }, + root_markers = { '_CoqProject', '.git' }, +} diff --git a/.config/nvim/lsp/crystalline.lua b/.config/nvim/lsp/crystalline.lua new file mode 100644 index 0000000..f682f7d --- /dev/null +++ b/.config/nvim/lsp/crystalline.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/elbywan/crystalline +--- +--- Crystal language server. + +---@type vim.lsp.Config +return { + cmd = { 'crystalline' }, + filetypes = { 'crystal' }, + root_markers = { 'shard.yml', '.git' }, +} diff --git a/.config/nvim/lsp/csharp_ls.lua b/.config/nvim/lsp/csharp_ls.lua new file mode 100644 index 0000000..7764592 --- /dev/null +++ b/.config/nvim/lsp/csharp_ls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/razzmatazz/csharp-language-server +--- +--- Language Server for C#. +--- +--- csharp-ls requires the [dotnet-sdk](https://dotnet.microsoft.com/download) to be installed. +--- +--- The preferred way to install csharp-ls is with `dotnet tool install --global csharp-ls`. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'csharp-ls' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern '*.sln'(fname) or util.root_pattern '*.slnx'(fname) or util.root_pattern '*.csproj'(fname)) + end, + filetypes = { 'cs' }, + init_options = { + AutomaticWorkspaceInit = true, + }, +} diff --git a/.config/nvim/lsp/cspell_ls.lua b/.config/nvim/lsp/cspell_ls.lua new file mode 100644 index 0000000..d1598dd --- /dev/null +++ b/.config/nvim/lsp/cspell_ls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- [cspell language server](https://github.com/vlabo/cspell-lsp) +--- + +---@type vim.lsp.Config +return { + cmd = { 'cspell-lsp', '--stdio' }, + root_markers = { + '.git', + 'cspell.json', + '.cspell.json', + 'cspell.json', + '.cSpell.json', + 'cSpell.json', + 'cspell.config.js', + 'cspell.config.cjs', + 'cspell.config.json', + 'cspell.config.yaml', + 'cspell.config.yml', + 'cspell.yaml', + 'cspell.yml', + }, +} diff --git a/.config/nvim/lsp/css_variables.lua b/.config/nvim/lsp/css_variables.lua new file mode 100644 index 0000000..f9cdbcd --- /dev/null +++ b/.config/nvim/lsp/css_variables.lua @@ -0,0 +1,39 @@ +---@brief +--- +--- https://github.com/vunguyentuan/vscode-css-variables/tree/master/packages/css-variables-language-server +--- +--- CSS variables autocompletion and go-to-definition +--- +--- `css-variables-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm i -g css-variables-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'css-variables-language-server', '--stdio' }, + filetypes = { 'css', 'scss', 'less' }, + root_markers = { 'package.json', '.git' }, + -- Same as inlined defaults that don't seem to work without hardcoding them in the lua config + -- https://github.com/vunguyentuan/vscode-css-variables/blob/763a564df763f17aceb5f3d6070e0b444a2f47ff/packages/css-variables-language-server/src/CSSVariableManager.ts#L31-L50 + settings = { + cssVariables = { + lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' }, + blacklistFolders = { + '**/.cache', + '**/.DS_Store', + '**/.git', + '**/.hg', + '**/.next', + '**/.svn', + '**/bower_components', + '**/CVS', + '**/dist', + '**/node_modules', + '**/tests', + '**/tmp', + }, + }, + }, +} diff --git a/.config/nvim/lsp/cssls.lua b/.config/nvim/lsp/cssls.lua new file mode 100644 index 0000000..5f825b4 --- /dev/null +++ b/.config/nvim/lsp/cssls.lua @@ -0,0 +1,34 @@ +---@brief +--- +--- https://github.com/hrsh7th/vscode-langservers-extracted +--- +--- `css-languageserver` can be installed via `npm`: +--- +--- ```sh +--- npm i -g vscode-langservers-extracted +--- ``` +--- +--- Neovim does not currently include built-in snippets. `vscode-css-language-server` only provides completions when snippet support is enabled. To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup. +--- +--- ```lua +--- --Enable (broadcasting) snippet capability for completion +--- local capabilities = vim.lsp.protocol.make_client_capabilities() +--- capabilities.textDocument.completion.completionItem.snippetSupport = true +--- +--- vim.lsp.config('cssls', { +--- capabilities = capabilities, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vscode-css-language-server', '--stdio' }, + filetypes = { 'css', 'scss', 'less' }, + init_options = { provideFormatter = true }, -- needed to enable formatting capabilities + root_markers = { 'package.json', '.git' }, + settings = { + css = { validate = true }, + scss = { validate = true }, + less = { validate = true }, + }, +} diff --git a/.config/nvim/lsp/cssmodules_ls.lua b/.config/nvim/lsp/cssmodules_ls.lua new file mode 100644 index 0000000..35a5c59 --- /dev/null +++ b/.config/nvim/lsp/cssmodules_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/antonk52/cssmodules-language-server +--- +--- Language server for autocompletion and go-to-definition functionality for CSS modules. +--- +--- You can install cssmodules-language-server via npm: +--- ```sh +--- npm install -g cssmodules-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'cssmodules-language-server' }, + filetypes = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact' }, + root_markers = { 'package.json' }, +} diff --git a/.config/nvim/lsp/cucumber_language_server.lua b/.config/nvim/lsp/cucumber_language_server.lua new file mode 100644 index 0000000..82bfcff --- /dev/null +++ b/.config/nvim/lsp/cucumber_language_server.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://cucumber.io +--- https://github.com/cucumber/common +--- https://www.npmjs.com/package/@cucumber/language-server +--- +--- Language server for Cucumber. +--- +--- `cucumber-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g @cucumber/language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'cucumber-language-server', '--stdio' }, + filetypes = { 'cucumber' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/cue.lua b/.config/nvim/lsp/cue.lua new file mode 100644 index 0000000..22941a0 --- /dev/null +++ b/.config/nvim/lsp/cue.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/cue-lang/cue +--- +--- CUE makes it easy to validate data, write schemas, and ensure configurations align with policies. + +---@type vim.lsp.Config +return { + cmd = { 'cue', 'lsp' }, + filetypes = { 'cue' }, + root_markers = { 'cue.mod', '.git' }, +} diff --git a/.config/nvim/lsp/custom_elements_ls.lua b/.config/nvim/lsp/custom_elements_ls.lua new file mode 100644 index 0000000..684786b --- /dev/null +++ b/.config/nvim/lsp/custom_elements_ls.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- https://github.com/Matsuuu/custom-elements-language-server +--- +--- `custom-elements-languageserver` depends on `typescript`. Both packages can be installed via `npm`: +--- ```sh +--- npm install -g typescript custom-elements-languageserver +--- ``` +--- To configure typescript language server, add a +--- [`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) or +--- [`jsconfig.json`](https://code.visualstudio.com/docs/languages/jsconfig) to the root of your +--- project. +--- Here's an example that disables type checking in JavaScript files. +--- ```json +--- { +--- "compilerOptions": { +--- "module": "commonjs", +--- "target": "es6", +--- "checkJs": false +--- }, +--- "exclude": [ +--- "node_modules" +--- ] +--- } +--- ``` + +---@type vim.lsp.Config +return { + init_options = { hostInfo = 'neovim' }, + cmd = { 'custom-elements-languageserver', '--stdio' }, + root_markers = { 'tsconfig.json', 'package.json', 'jsconfig.json', '.git' }, +} diff --git a/.config/nvim/lsp/cypher_ls.lua b/.config/nvim/lsp/cypher_ls.lua new file mode 100644 index 0000000..8058b1c --- /dev/null +++ b/.config/nvim/lsp/cypher_ls.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://github.com/neo4j/cypher-language-support/tree/main/packages/language-server +--- +--- `cypher-language-server`, language server for Cypher query language. +--- Part of the umbrella project cypher-language-support: https://github.com/neo4j/cypher-language-support +--- +--- `cypher-language-server` can be installed via `npm`: +--- ```sh +--- npm i -g @neo4j-cypher/language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'cypher-language-server', '--stdio' }, + filetypes = { 'cypher' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/daedalus_ls.lua b/.config/nvim/lsp/daedalus_ls.lua new file mode 100644 index 0000000..b3adef8 --- /dev/null +++ b/.config/nvim/lsp/daedalus_ls.lua @@ -0,0 +1,27 @@ +--- @brief +--- +--- DaedalusLanguageServer + +---@type vim.lsp.Config +return { + cmd = { 'DaedalusLanguageServer' }, + filetypes = { 'd' }, + root_markers = { + 'Gothic.src', + 'Camera.src', + 'Menu.src', + 'Music.src', + 'ParticleFX.src', + 'SFX.src', + 'VisualFX.src', + }, + settings = { + DaedalusLanguageServer = { + loglevel = 'debug', + inlayHints = { constants = true }, + numParserThreads = 16, + fileEncoding = 'Windows-1252', + srcFileEncoding = 'Windows-1252', + }, + }, +} diff --git a/.config/nvim/lsp/dafny.lua b/.config/nvim/lsp/dafny.lua new file mode 100644 index 0000000..39e65d9 --- /dev/null +++ b/.config/nvim/lsp/dafny.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- Support for the Dafny language server. + +-- The default `cmd` uses "dafny server", which works on Dafny 4.0.0+. For +-- older versions of Dafny, you can compile the language server from source at +-- [dafny-lang/language-server-csharp](https://github.com/dafny-lang/language-server-csharp) +-- and set `cmd = {"dotnet", "<Path to your language server>"}`. + +---@type vim.lsp.Config +return { + cmd = { 'dafny', 'server' }, + filetypes = { 'dfy', 'dafny' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/dagger.lua b/.config/nvim/lsp/dagger.lua new file mode 100644 index 0000000..714e79a --- /dev/null +++ b/.config/nvim/lsp/dagger.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/dagger/cuelsp +--- +--- Dagger's lsp server for cuelang. + +---@type vim.lsp.Config +return { + cmd = { 'cuelsp' }, + filetypes = { 'cue' }, + root_markers = { 'cue.mod', '.git' }, +} diff --git a/.config/nvim/lsp/dartls.lua b/.config/nvim/lsp/dartls.lua new file mode 100644 index 0000000..3731d07 --- /dev/null +++ b/.config/nvim/lsp/dartls.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://github.com/dart-lang/sdk/tree/master/pkg/analysis_server/tool/lsp_spec +--- +--- Language server for dart. + +---@type vim.lsp.Config +return { + cmd = { 'dart', 'language-server', '--protocol=lsp' }, + filetypes = { 'dart' }, + root_markers = { 'pubspec.yaml' }, + init_options = { + onlyAnalyzeProjectsWithOpenFiles = true, + suggestFromUnimportedLibraries = true, + closingLabels = true, + outline = true, + flutterOutline = true, + }, + settings = { + dart = { + completeFunctionCalls = true, + showTodos = true, + }, + }, +} diff --git a/.config/nvim/lsp/dcmls.lua b/.config/nvim/lsp/dcmls.lua new file mode 100644 index 0000000..90f98db --- /dev/null +++ b/.config/nvim/lsp/dcmls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://dcm.dev/ +--- +--- Language server for DCM analyzer. + +---@type vim.lsp.Config +return { + cmd = { 'dcm', 'start-server', '--client=neovim' }, + filetypes = { 'dart' }, + root_markers = { 'pubspec.yaml' }, +} diff --git a/.config/nvim/lsp/debputy.lua b/.config/nvim/lsp/debputy.lua new file mode 100644 index 0000000..6d7dce5 --- /dev/null +++ b/.config/nvim/lsp/debputy.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://salsa.debian.org/debian/debputy +--- +--- Language Server for Debian packages. + +---@type vim.lsp.Config +return { + cmd = { 'debputy', 'lsp', 'server' }, + filetypes = { 'debcontrol', 'debcopyright', 'debchangelog', 'autopkgtest', 'make', 'yaml' }, + root_markers = { 'debian' }, +} diff --git a/.config/nvim/lsp/denols.lua b/.config/nvim/lsp/denols.lua new file mode 100644 index 0000000..8c051fb --- /dev/null +++ b/.config/nvim/lsp/denols.lua @@ -0,0 +1,111 @@ +---@brief +--- +--- https://github.com/denoland/deno +--- +--- Deno's built-in language server +--- +--- To appropriately highlight codefences returned from denols, you will need to augment vim.g.markdown_fenced languages +--- in your init.lua. Example: +--- +--- ```lua +--- vim.g.markdown_fenced_languages = { +--- "ts=typescript" +--- } +--- ``` + +local lsp = vim.lsp + +local function virtual_text_document_handler(uri, res, client) + if not res then + return nil + end + + local lines = vim.split(res.result, '\n') + local bufnr = vim.uri_to_bufnr(uri) + + local current_buf = vim.api.nvim_buf_get_lines(bufnr, 0, -1, false) + if #current_buf ~= 0 then + return nil + end + + vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines) + vim.api.nvim_set_option_value('readonly', true, { buf = bufnr }) + vim.api.nvim_set_option_value('modified', false, { buf = bufnr }) + vim.api.nvim_set_option_value('modifiable', false, { buf = bufnr }) + lsp.buf_attach_client(bufnr, client.id) +end + +local function virtual_text_document(uri, client) + local params = { + textDocument = { + uri = uri, + }, + } + local result = client:request_sync('deno/virtualTextDocument', params) + virtual_text_document_handler(uri, result, client) +end + +local function denols_handler(err, result, ctx, config) + if not result or vim.tbl_isempty(result) then + return nil + end + + local client = vim.lsp.get_client_by_id(ctx.client_id) + for _, res in pairs(result) do + local uri = res.uri or res.targetUri + if uri:match '^deno:' then + virtual_text_document(uri, client) + res['uri'] = uri + res['targetUri'] = uri + end + end + + lsp.handlers[ctx.method](err, result, ctx, config) +end + +---@type vim.lsp.Config +return { + cmd = { 'deno', 'lsp' }, + cmd_env = { NO_COLOR = true }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + root_markers = { 'deno.json', 'deno.jsonc', '.git' }, + settings = { + deno = { + enable = true, + suggest = { + imports = { + hosts = { + ['https://deno.land'] = true, + }, + }, + }, + }, + }, + handlers = { + ['textDocument/definition'] = denols_handler, + ['textDocument/typeDefinition'] = denols_handler, + ['textDocument/references'] = denols_handler, + }, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspDenolsCache', function() + client:exec_cmd({ + command = 'deno.cache', + arguments = { {}, vim.uri_from_bufnr(bufnr) }, + }, { bufnr = bufnr }, function(err, _, ctx) + if err then + local uri = ctx.params.arguments[2] + vim.notify('cache command failed for' .. vim.uri_to_fname(uri), vim.log.levels.ERROR) + end + end) + end, { + desc = 'Cache a module and all of its dependencies.', + }) + end, +} diff --git a/.config/nvim/lsp/dhall_lsp_server.lua b/.config/nvim/lsp/dhall_lsp_server.lua new file mode 100644 index 0000000..4953fba --- /dev/null +++ b/.config/nvim/lsp/dhall_lsp_server.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server +--- +--- language server for dhall +--- +--- `dhall-lsp-server` can be installed via cabal: +--- ```sh +--- cabal install dhall-lsp-server +--- ``` +--- prebuilt binaries can be found [here](https://github.com/dhall-lang/dhall-haskell/releases). + +---@type vim.lsp.Config +return { + cmd = { 'dhall-lsp-server' }, + filetypes = { 'dhall' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/diagnosticls.lua b/.config/nvim/lsp/diagnosticls.lua new file mode 100644 index 0000000..8c717ea --- /dev/null +++ b/.config/nvim/lsp/diagnosticls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/iamcco/diagnostic-languageserver +--- +--- Diagnostic language server integrate with linters. + +---@type vim.lsp.Config +return { + -- Configuration from https://github.com/iamcco/diagnostic-languageserver#config--document + cmd = { 'diagnostic-languageserver', '--stdio' }, + root_markers = { '.git' }, + -- Empty by default, override to add filetypes. + filetypes = {}, +} diff --git a/.config/nvim/lsp/digestif.lua b/.config/nvim/lsp/digestif.lua new file mode 100644 index 0000000..863b772 --- /dev/null +++ b/.config/nvim/lsp/digestif.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/astoff/digestif +--- +--- Digestif is a code analyzer, and a language server, for LaTeX, ConTeXt et caterva. It provides +--- +--- context-sensitive completion, documentation, code navigation, and related functionality to any +--- +--- text editor that speaks the LSP protocol. + +---@type vim.lsp.Config +return { + cmd = { 'digestif' }, + filetypes = { 'tex', 'plaintex', 'context' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/djls.lua b/.config/nvim/lsp/djls.lua new file mode 100644 index 0000000..7ef8d5f --- /dev/null +++ b/.config/nvim/lsp/djls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/joshuadavidthomas/django-language-server +--- +--- `djls`, a language server for the Django web framework. + +---@type vim.lsp.Config +return { + cmd = { 'djls', 'serve' }, + filetypes = { 'htmldjango', 'html', 'python' }, + root_markers = { 'manage.py', 'pyproject.toml', '.git' }, +} diff --git a/.config/nvim/lsp/djlsp.lua b/.config/nvim/lsp/djlsp.lua new file mode 100644 index 0000000..120dbe4 --- /dev/null +++ b/.config/nvim/lsp/djlsp.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/fourdigits/django-template-lsp +--- +--- `djlsp`, a language server for Django templates. + +---@type vim.lsp.Config +return { + cmd = { 'djlsp' }, + filetypes = { 'html', 'htmldjango' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/docker_compose_language_service.lua b/.config/nvim/lsp/docker_compose_language_service.lua new file mode 100644 index 0000000..f5bbf78 --- /dev/null +++ b/.config/nvim/lsp/docker_compose_language_service.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/microsoft/compose-language-service +--- This project contains a language service for Docker Compose. +--- +--- `compose-language-service` can be installed via `npm`: +--- +--- ```sh +--- npm install @microsoft/compose-language-service +--- ``` +--- +--- Note: If the docker-compose-langserver doesn't startup when entering a `docker-compose.yaml` file, make sure that the filetype is `yaml.docker-compose`. You can set with: `:set filetype=yaml.docker-compose`. + +---@type vim.lsp.Config +return { + cmd = { 'docker-compose-langserver', '--stdio' }, + filetypes = { 'yaml.docker-compose' }, + root_markers = { 'docker-compose.yaml', 'docker-compose.yml', 'compose.yaml', 'compose.yml' }, +} diff --git a/.config/nvim/lsp/docker_language_server.lua b/.config/nvim/lsp/docker_language_server.lua new file mode 100644 index 0000000..695d51a --- /dev/null +++ b/.config/nvim/lsp/docker_language_server.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- https://github.com/docker/docker-language-server +--- +--- `docker-langserver-server` can be installed via `go`: +--- ```sh +--- go install github.com/docker/docker-language-server/cmd/docker-language-server@latest +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'docker-language-server', 'start', '--stdio' }, + filetypes = { 'dockerfile', 'yaml.docker-compose' }, + get_language_id = function(_, ftype) + if ftype == 'yaml.docker-compose' or ftype:lower():find('ya?ml') then + return 'dockercompose' + else + return ftype + end + end, + root_markers = { + 'Dockerfile', + 'docker-compose.yaml', + 'docker-compose.yml', + 'compose.yaml', + 'compose.yml', + 'docker-bake.json', + 'docker-bake.hcl', + 'docker-bake.override.json', + 'docker-bake.override.hcl', + }, +} diff --git a/.config/nvim/lsp/dockerls.lua b/.config/nvim/lsp/dockerls.lua new file mode 100644 index 0000000..ee17ed1 --- /dev/null +++ b/.config/nvim/lsp/dockerls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/rcjsuen/dockerfile-language-server-nodejs +--- +--- `docker-langserver` can be installed via `npm`: +--- ```sh +--- npm install -g dockerfile-language-server-nodejs +--- ``` +--- +--- Additional configuration can be applied in the following way: +--- ```lua +--- vim.lsp.config('dockerls', { +--- settings = { +--- docker = { +--- languageserver = { +--- formatter = { +--- ignoreMultilineInstructions = true, +--- }, +--- }, +--- } +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'docker-langserver', '--stdio' }, + filetypes = { 'dockerfile' }, + root_markers = { 'Dockerfile' }, +} diff --git a/.config/nvim/lsp/dolmenls.lua b/.config/nvim/lsp/dolmenls.lua new file mode 100644 index 0000000..de240da --- /dev/null +++ b/.config/nvim/lsp/dolmenls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/Gbury/dolmen/blob/master/doc/lsp.md +--- +--- `dolmenls` can be installed via `opam` +--- ```sh +--- opam install dolmen_lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'dolmenls' }, + filetypes = { 'smt2', 'tptp', 'p', 'cnf', 'icnf', 'zf' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/dotls.lua b/.config/nvim/lsp/dotls.lua new file mode 100644 index 0000000..51fca6e --- /dev/null +++ b/.config/nvim/lsp/dotls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/nikeee/dot-language-server +--- +--- `dot-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g dot-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'dot-language-server', '--stdio' }, + filetypes = { 'dot' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/dprint.lua b/.config/nvim/lsp/dprint.lua new file mode 100644 index 0000000..31acacd --- /dev/null +++ b/.config/nvim/lsp/dprint.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/dprint/dprint +--- +--- Pluggable and configurable code formatting platform written in Rust. + +---@type vim.lsp.Config +return { + cmd = { 'dprint', 'lsp' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'typescript', + 'typescriptreact', + 'json', + 'jsonc', + 'markdown', + 'python', + 'toml', + 'rust', + 'roslyn', + 'graphql', + }, + root_markers = { 'dprint.json', '.dprint.json', 'dprint.jsonc', '.dprint.jsonc' }, + settings = {}, +} diff --git a/.config/nvim/lsp/ds_pinyin_lsp.lua b/.config/nvim/lsp/ds_pinyin_lsp.lua new file mode 100644 index 0000000..68a99fa --- /dev/null +++ b/.config/nvim/lsp/ds_pinyin_lsp.lua @@ -0,0 +1,67 @@ +---@brief +--- +--- https://github.com/iamcco/ds-pinyin-lsp +--- Dead simple Pinyin language server for input Chinese without IME(input method). +--- To install, download the latest [release](https://github.com/iamcco/ds-pinyin-lsp/releases) and ensure `ds-pinyin-lsp` is on your path. +--- And make ensure the database file `dict.db3` is also downloaded. And put the path to `dict.dbs` in the following code. +--- +--- ```lua +--- +--- vim.lsp.config('ds_pinyin_lsp', { +--- init_options = { +--- db_path = "your_path_to_database" +--- } +--- }) +--- +--- ``` + +local bin_name = 'ds-pinyin-lsp' +if vim.fn.has 'win32' == 1 then + bin_name = bin_name .. '.exe' +end + +local function ds_pinyin_lsp_off(bufnr) + local ds_pinyin_lsp_client = vim.lsp.get_clients({ bufnr = bufnr, name = 'ds_pinyin_lsp' })[1] + if ds_pinyin_lsp_client then + ds_pinyin_lsp_client:notify('$/turn/completion', { + ['completion_on'] = false, + }) + else + vim.notify 'notification $/turn/completion is not supported by any servers active on the current buffer' + end +end + +local function ds_pinyin_lsp_on(bufnr) + local ds_pinyin_lsp_client = vim.lsp.get_clients({ bufnr = bufnr, name = 'ds_pinyin_lsp' })[1] + if ds_pinyin_lsp_client then + ds_pinyin_lsp_client:notify('$/turn/completion', { + ['completion_on'] = true, + }) + else + vim.notify 'notification $/turn/completion is not supported by any servers active on the current buffer' + end +end + +---@type vim.lsp.Config +return { + cmd = { bin_name }, + filetypes = { 'markdown', 'org' }, + root_markers = { '.git' }, + init_options = { + completion_on = true, + show_symbols = true, + show_symbols_only_follow_by_hanzi = false, + show_symbols_by_n_times = 0, + match_as_same_as_input = true, + match_long_input = true, + max_suggest = 15, + }, + on_attach = function(_, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspDsPinyinCompletionOff', function() + ds_pinyin_lsp_off(bufnr) + end, { desc = 'Turn off the ds-pinyin-lsp completion' }) + vim.api.nvim_buf_create_user_command(bufnr, 'LspDsPinyinCompletionOn', function() + ds_pinyin_lsp_on(bufnr) + end, { desc = 'Turn on the ds-pinyin-lsp completion' }) + end, +} diff --git a/.config/nvim/lsp/dts_lsp.lua b/.config/nvim/lsp/dts_lsp.lua new file mode 100644 index 0000000..dd9c4a8 --- /dev/null +++ b/.config/nvim/lsp/dts_lsp.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- `dts-lsp` is an LSP for Devicetree files built on top of tree-sitter-devicetree grammar. +--- Language servers can be used in many editors, such as Visual Studio Code, Emacs +--- or Vim +--- +--- Install `dts-lsp` from https://github.com/igor-prusov/dts-lsp and add it to path +--- +--- `dts-lsp` doesn't require any configuration. +--- +--- More about Devicetree: +--- https://www.devicetree.org/ +--- https://docs.zephyrproject.org/latest/build/dts/index.html + +---@type vim.lsp.Config +return { + name = 'dts_lsp', + cmd = { 'dts-lsp' }, + filetypes = { 'dts', 'dtsi', 'overlay' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/earthlyls.lua b/.config/nvim/lsp/earthlyls.lua new file mode 100644 index 0000000..3beb399 --- /dev/null +++ b/.config/nvim/lsp/earthlyls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/glehmann/earthlyls +--- +--- A fast language server for earthly. + +---@type vim.lsp.Config +return { + cmd = { 'earthlyls' }, + filetypes = { 'earthfile' }, + root_markers = { 'Earthfile' }, +} diff --git a/.config/nvim/lsp/ecsact.lua b/.config/nvim/lsp/ecsact.lua new file mode 100644 index 0000000..b59aad4 --- /dev/null +++ b/.config/nvim/lsp/ecsact.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/ecsact-dev/ecsact_lsp_server +--- +--- Language server for Ecsact. +--- +--- The default cmd assumes `ecsact_lsp_server` is in your PATH. Typically from the +--- Ecsact SDK: https://ecsact.dev/start + +---@type vim.lsp.Config +return { + cmd = { 'ecsact_lsp_server', '--stdio' }, + filetypes = { 'ecsact' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/efm.lua b/.config/nvim/lsp/efm.lua new file mode 100644 index 0000000..d421669 --- /dev/null +++ b/.config/nvim/lsp/efm.lua @@ -0,0 +1,25 @@ +--- @brief +--- +--- https://github.com/mattn/efm-langserver +--- +--- General purpose Language Server that can use specified error message format generated from specified command. +--- +--- Requires at minimum EFM version [v0.0.38](https://github.com/mattn/efm-langserver/releases/tag/v0.0.38) to support +--- launching the language server on single files. +--- +--- Note: In order for neovim's built-in language server client to send the appropriate `languageId` to EFM, **you must +--- specify `filetypes` in your call to `vim.lsp.config`**. Otherwise the server will be launch on the `BufEnter` instead +--- of the `FileType` autocommand, and the `filetype` variable used to populate the `languageId` will not yet be set. +--- +--- ```lua +--- vim.lsp.config('efm', { +--- filetypes = { 'python','cpp','lua' } +--- settings = ..., -- You must populate this according to the EFM readme +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'efm-langserver' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/elixirls.lua b/.config/nvim/lsp/elixirls.lua new file mode 100644 index 0000000..da7b7b3 --- /dev/null +++ b/.config/nvim/lsp/elixirls.lua @@ -0,0 +1,46 @@ +---@brief +--- +--- https://github.com/elixir-lsp/elixir-ls +--- +--- `elixir-ls` can be installed by following the instructions [here](https://github.com/elixir-lsp/elixir-ls#building-and-running). +--- +--- 1. Download the zip from https://github.com/elixir-lsp/elixir-ls/releases/latest/ +--- 2. Unzip it and make it executable. +--- ```bash +--- unzip elixir-ls.zip -d /path/to/elixir-ls +--- # Unix +--- chmod +x /path/to/elixir-ls/language_server.sh +--- ``` +--- +--- **By default, elixir-ls doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about +--- your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and +--- ~ are not expanded) of your unzipped elixir-ls. +--- +--- ```lua +--- vim.lsp.config('elixirls', { +--- -- Unix +--- cmd = { "/path/to/elixir-ls/language_server.sh" }; +--- -- Windows +--- cmd = { "/path/to/elixir-ls/language_server.bat" }; +--- ... +--- }) +--- ``` +--- +--- 'root_dir' is chosen like this: if two or more directories containing `mix.exs` were found when searching +--- directories upward, the second one (higher up) is chosen, with the assumption that it is the root of an umbrella +--- app. Otherwise the directory containing the single mix.exs that was found is chosen. + +---@type vim.lsp.Config +return { + filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + --- Elixir workspaces may have multiple `mix.exs` files, for an "umbrella" layout or monorepo. + --- So we specify `limit=2` and treat the highest one (if any) as the root of an umbrella app. + local matches = vim.fs.find({ 'mix.exs' }, { upward = true, limit = 2, path = fname }) + local child_or_root_path, maybe_umbrella_path = unpack(matches) + local root_dir = vim.fs.dirname(maybe_umbrella_path or child_or_root_path) + + on_dir(root_dir) + end, +} diff --git a/.config/nvim/lsp/elmls.lua b/.config/nvim/lsp/elmls.lua new file mode 100644 index 0000000..8a76f81 --- /dev/null +++ b/.config/nvim/lsp/elmls.lua @@ -0,0 +1,35 @@ +---@brief +--- +--- https://github.com/elm-tooling/elm-language-server#installation +--- +--- If you don't want to use Nvim to install it, then you can use: +--- ```sh +--- npm install -g elm elm-test elm-format @elm-tooling/elm-language-server +--- ``` + +local api = vim.api + +---@type vim.lsp.Config +return { + cmd = { 'elm-language-server' }, + -- TODO(ashkan) if we comment this out, it will allow elmls to operate on elm.json. It seems like it could do that, but no other editor allows it right now. + filetypes = { 'elm' }, + root_dir = function(bufnr, on_dir) + local fname = api.nvim_buf_get_name(bufnr) + local filetype = vim.bo[bufnr].filetype + if filetype == 'elm' or (filetype == 'json' and fname:match 'elm%.json$') then + on_dir(vim.fs.root(fname, 'elm.json')) + return + end + on_dir(nil) + end, + init_options = { + elmReviewDiagnostics = 'off', -- 'off' | 'warning' | 'error' + skipInstallPackageConfirmation = false, + disableElmLSDiagnostics = false, + onlyUpdateDiagnosticsOnSave = false, + }, + capabilities = { + offsetEncoding = { 'utf-8', 'utf-16' }, + }, +} diff --git a/.config/nvim/lsp/elp.lua b/.config/nvim/lsp/elp.lua new file mode 100644 index 0000000..38c0716 --- /dev/null +++ b/.config/nvim/lsp/elp.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://whatsapp.github.io/erlang-language-platform +--- +--- ELP integrates Erlang into modern IDEs via the language server protocol and was +--- inspired by rust-analyzer. + +---@type vim.lsp.Config +return { + cmd = { 'elp', 'server' }, + filetypes = { 'erlang' }, + root_markers = { 'rebar.config', 'erlang.mk', '.git' }, +} diff --git a/.config/nvim/lsp/ember.lua b/.config/nvim/lsp/ember.lua new file mode 100644 index 0000000..9d1ec2a --- /dev/null +++ b/.config/nvim/lsp/ember.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/ember-tooling/ember-language-server +--- +--- `ember-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g @ember-tooling/ember-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ember-language-server', '--stdio' }, + filetypes = { 'handlebars', 'typescript', 'javascript', 'typescript.glimmer', 'javascript.glimmer' }, + root_markers = { 'ember-cli-build.js', '.git' }, +} diff --git a/.config/nvim/lsp/emmet_language_server.lua b/.config/nvim/lsp/emmet_language_server.lua new file mode 100644 index 0000000..89c5f4b --- /dev/null +++ b/.config/nvim/lsp/emmet_language_server.lua @@ -0,0 +1,31 @@ +---@brief +--- +--- https://github.com/olrtg/emmet-language-server +--- +--- Package can be installed via `npm`: +--- ```sh +--- npm install -g @olrtg/emmet-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'emmet-language-server', '--stdio' }, + filetypes = { + 'astro', + 'css', + 'eruby', + 'html', + 'htmlangular', + 'htmldjango', + 'javascriptreact', + 'less', + 'pug', + 'sass', + 'scss', + 'svelte', + 'templ', + 'typescriptreact', + 'vue', + }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/emmet_ls.lua b/.config/nvim/lsp/emmet_ls.lua new file mode 100644 index 0000000..7bfede0 --- /dev/null +++ b/.config/nvim/lsp/emmet_ls.lua @@ -0,0 +1,31 @@ +---@brief +--- +--- https://github.com/aca/emmet-ls +--- +--- Package can be installed via `npm`: +--- ```sh +--- npm install -g emmet-ls +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'emmet-ls', '--stdio' }, + filetypes = { + 'astro', + 'css', + 'eruby', + 'html', + 'htmlangular', + 'htmldjango', + 'javascriptreact', + 'less', + 'pug', + 'sass', + 'scss', + 'svelte', + 'templ', + 'typescriptreact', + 'vue', + }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/emmylua_ls.lua b/.config/nvim/lsp/emmylua_ls.lua new file mode 100644 index 0000000..5621469 --- /dev/null +++ b/.config/nvim/lsp/emmylua_ls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/EmmyLuaLs/emmylua-analyzer-rust +--- +--- Emmylua Analyzer Rust. Language Server for Lua. +--- +--- `emmylua_ls` can be installed using `cargo` by following the instructions[here] +--- (https://github.com/EmmyLuaLs/emmylua-analyzer-rust?tab=readme-ov-file#install). +--- +--- The default `cmd` assumes that the `emmylua_ls` binary can be found in `$PATH`. +--- It might require you to provide cargo binaries installation path in it. + +---@type vim.lsp.Config +return { + cmd = { 'emmylua_ls' }, + filetypes = { 'lua' }, + root_markers = { + '.luarc.json', + '.emmyrc.json', + '.luacheckrc', + '.git', + }, + workspace_required = false, +} diff --git a/.config/nvim/lsp/erg_language_server.lua b/.config/nvim/lsp/erg_language_server.lua new file mode 100644 index 0000000..4537072 --- /dev/null +++ b/.config/nvim/lsp/erg_language_server.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/erg-lang/erg#flags ELS +--- +--- ELS (erg-language-server) is a language server for the Erg programming language. +--- +--- erg-language-server can be installed via `cargo` and used as follows: +--- +--- ```sh +--- cargo install erg --features els +--- erg --language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'erg', '--language-server' }, + filetypes = { 'erg' }, + root_markers = { 'package.er', '.git' }, +} diff --git a/.config/nvim/lsp/erlangls.lua b/.config/nvim/lsp/erlangls.lua new file mode 100644 index 0000000..d209d83 --- /dev/null +++ b/.config/nvim/lsp/erlangls.lua @@ -0,0 +1,21 @@ +---@brief +--- +--- https://erlang-ls.github.io +--- +--- Language Server for Erlang. +--- +--- Clone [erlang_ls](https://github.com/erlang-ls/erlang_ls) +--- Compile the project with `make` and copy resulting binaries somewhere in your $PATH eg. `cp _build/*/bin/* ~/local/bin` +--- +--- Installation instruction can be found [here](https://github.com/erlang-ls/erlang_ls). +--- +--- Installation requirements: +--- - [Erlang OTP 21+](https://github.com/erlang/otp) +--- - [rebar3 3.9.1+](https://github.com/erlang/rebar3) + +---@type vim.lsp.Config +return { + cmd = { 'erlang_ls' }, + filetypes = { 'erlang' }, + root_markers = { 'rebar.config', 'erlang.mk', '.git' }, +} diff --git a/.config/nvim/lsp/esbonio.lua b/.config/nvim/lsp/esbonio.lua new file mode 100644 index 0000000..3b1fcee --- /dev/null +++ b/.config/nvim/lsp/esbonio.lua @@ -0,0 +1,51 @@ +---@brief +--- +--- https://github.com/swyddfa/esbonio +--- +--- Esbonio is a language server for [Sphinx](https://www.sphinx-doc.org/en/master/) documentation projects. +--- The language server can be installed via pip +--- +--- ``` +--- pip install esbonio +--- ``` +--- +--- Since Sphinx is highly extensible you will get best results if you install the language server in the same +--- Python environment as the one used to build your documentation. To ensure that the correct Python environment +--- is picked up, you can either launch `nvim` with the correct environment activated. +--- +--- ``` +--- source env/bin/activate +--- nvim +--- ``` +--- +--- Or you can modify the default `cmd` to include the full path to the Python interpreter. +--- +--- ```lua +--- vim.lsp.config('esbonio', { +--- cmd = { '/path/to/virtualenv/bin/python', '-m', 'esbonio' } +--- }) +--- ``` +--- +--- Esbonio supports a number of config values passed as `init_options` on startup, for example. +--- +--- ```lua +--- vim.lsp.config('esbonio', { +--- init_options = { +--- server = { +--- logLevel = "debug" +--- }, +--- sphinx = { +--- confDir = "/path/to/docs", +--- srcDir = "${confDir}/../docs-src" +--- } +--- }) +--- ``` +--- +--- A full list and explanation of the available options can be found [here](https://docs.esbon.io/en/esbonio-language-server-v0.16.4/lsp/getting-started.html?editor=neovim-lspconfig#configuration) + +---@type vim.lsp.Config +return { + cmd = { 'python3', '-m', 'esbonio' }, + filetypes = { 'rst' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/eslint.lua b/.config/nvim/lsp/eslint.lua new file mode 100644 index 0000000..24fac5c --- /dev/null +++ b/.config/nvim/lsp/eslint.lua @@ -0,0 +1,225 @@ +--- @brief +--- +--- https://github.com/hrsh7th/vscode-langservers-extracted +--- +--- `vscode-eslint-language-server` is a linting engine for JavaScript / Typescript. +--- It can be installed via `npm`: +--- +--- ```sh +--- npm i -g vscode-langservers-extracted +--- ``` +--- +--- The default `on_attach` config provides the `LspEslintFixAll` command that can be used to format a document on save: +--- ```lua +--- local base_on_attach = vim.lsp.config.eslint.on_attach +--- vim.lsp.config("eslint", { +--- on_attach = function(client, bufnr) +--- if not base_on_attach then return end +--- +--- base_on_attach(client, bufnr) +--- vim.api.nvim_create_autocmd("BufWritePre", { +--- buffer = bufnr, +--- command = "LspEslintFixAll", +--- }) +--- end, +--- }) +--- ``` +--- +--- See [vscode-eslint](https://github.com/microsoft/vscode-eslint/blob/55871979d7af184bf09af491b6ea35ebd56822cf/server/src/eslintServer.ts#L216-L229) for configuration options. +--- +--- Messages handled in lspconfig: `eslint/openDoc`, `eslint/confirmESLintExecution`, `eslint/probeFailed`, `eslint/noLibrary` +--- +--- Additional messages you can handle: `eslint/noConfig` +--- +--- ### Monorepo support +--- +--- `vscode-eslint-language-server` supports monorepos by default. It will automatically find the config file corresponding to the package you are working on. You can use different configs in different packages. +--- This works without the need of spawning multiple instances of `vscode-eslint-language-server`. +--- You can use a different version of ESLint in each package, but it is recommended to use the same version of ESLint in all packages. The location of the ESLint binary will be determined automatically. +--- +--- /!\ When using flat config files, you need to use them across all your packages in your monorepo, as it's a global setting for the server. + +local util = require 'lspconfig.util' +local lsp = vim.lsp + +local eslint_config_files = { + '.eslintrc', + '.eslintrc.js', + '.eslintrc.cjs', + '.eslintrc.yaml', + '.eslintrc.yml', + '.eslintrc.json', + 'eslint.config.js', + 'eslint.config.mjs', + 'eslint.config.cjs', + 'eslint.config.ts', + 'eslint.config.mts', + 'eslint.config.cts', +} + +---@type vim.lsp.Config +return { + cmd = { 'vscode-eslint-language-server', '--stdio' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + 'vue', + 'svelte', + 'astro', + 'htmlangular', + }, + workspace_required = true, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(0, 'LspEslintFixAll', function() + client:request_sync('workspace/executeCommand', { + command = 'eslint.applyAllFixes', + arguments = { + { + uri = vim.uri_from_bufnr(bufnr), + version = lsp.util.buf_versions[bufnr], + }, + }, + }, nil, bufnr) + end, {}) + end, + root_dir = function(bufnr, on_dir) + -- The project root is where the LSP can be started from + -- As stated in the documentation above, this LSP supports monorepos and simple projects. + -- We select then from the project root, which is identified by the presence of a package + -- manager lock file. + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } + -- Give the root markers equal priority by wrapping them in a table + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + + -- We know that the buffer is using ESLint if it has a config file + -- in its directory tree. + -- + -- Eslint used to support package.json files as config files, but it doesn't anymore. + -- We keep this for backward compatibility. + local filename = vim.api.nvim_buf_get_name(bufnr) + local eslint_config_files_with_package_json = + util.insert_package_json(eslint_config_files, 'eslintConfig', filename) + local is_buffer_using_eslint = vim.fs.find(eslint_config_files_with_package_json, { + path = filename, + type = 'file', + limit = 1, + upward = true, + stop = vim.fs.dirname(project_root), + })[1] + if not is_buffer_using_eslint then + return + end + + on_dir(project_root) + end, + -- Refer to https://github.com/Microsoft/vscode-eslint#settings-options for documentation. + settings = { + validate = 'on', + packageManager = nil, + useESLintClass = false, + experimental = { + useFlatConfig = false, + }, + codeActionOnSave = { + enable = false, + mode = 'all', + }, + format = true, + quiet = false, + onIgnoredFiles = 'off', + rulesCustomizations = {}, + run = 'onType', + problems = { + shortenToSingleLine = false, + }, + -- nodePath configures the directory in which the eslint server should start its node_modules resolution. + -- This path is relative to the workspace folder (root dir) of the server instance. + nodePath = '', + -- use the workspace folder location or the file location (if no workspace folder is open) as the working directory + workingDirectory = { mode = 'auto' }, + codeAction = { + disableRuleComment = { + enable = true, + location = 'separateLine', + }, + showDocumentation = { + enable = true, + }, + }, + }, + before_init = function(_, config) + -- The "workspaceFolder" is a VSCode concept. It limits how far the + -- server will traverse the file system when locating the ESLint config + -- file (e.g., .eslintrc). + local root_dir = config.root_dir + + if root_dir then + config.settings = config.settings or {} + config.settings.workspaceFolder = { + uri = root_dir, + name = vim.fn.fnamemodify(root_dir, ':t'), + } + + -- Support flat config files + -- They contain 'config' in the file name + local flat_config_files = vim.tbl_filter(function(file) + return file:match('config') + end, eslint_config_files) + + for _, file in ipairs(flat_config_files) do + local found_files = vim.fn.globpath(root_dir, file, true, true) + + -- Filter out files inside node_modules + local filtered_files = {} + for _, found_file in ipairs(found_files) do + if string.find(found_file, '[/\\]node_modules[/\\]') == nil then + table.insert(filtered_files, found_file) + end + end + + if #filtered_files > 0 then + config.settings.experimental = config.settings.experimental or {} + config.settings.experimental.useFlatConfig = true + break + end + end + + -- Support Yarn2 (PnP) projects + local pnp_cjs = root_dir .. '/.pnp.cjs' + local pnp_js = root_dir .. '/.pnp.js' + if vim.uv.fs_stat(pnp_cjs) or vim.uv.fs_stat(pnp_js) then + local cmd = config.cmd + config.cmd = vim.list_extend({ 'yarn', 'exec' }, cmd) + end + end + end, + handlers = { + ['eslint/openDoc'] = function(_, result) + if result then + vim.ui.open(result.url) + end + return {} + end, + ['eslint/confirmESLintExecution'] = function(_, result) + if not result then + return + end + return 4 -- approved + end, + ['eslint/probeFailed'] = function() + vim.notify('[lspconfig] ESLint probe failed.', vim.log.levels.WARN) + return {} + end, + ['eslint/noLibrary'] = function() + vim.notify('[lspconfig] Unable to find ESLint library.', vim.log.levels.WARN) + return {} + end, + }, +} diff --git a/.config/nvim/lsp/expert.lua b/.config/nvim/lsp/expert.lua new file mode 100644 index 0000000..f7146a6 --- /dev/null +++ b/.config/nvim/lsp/expert.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/elixir-lang/expert +--- +--- Expert is the official language server implementation for the Elixir programming language. +--- +--- 'root_dir' is chosen like this: if two or more directories containing `mix.exs` were found when +--- searching directories upward, the second one (higher up) is chosen, with the assumption that it +--- is the root of an umbrella app. Otherwise the directory containing the single mix.exs that was +--- found is chosen. + +---@type vim.lsp.Config +return { + filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, + cmd = { 'expert' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + --- Elixir workspaces may have multiple `mix.exs` files, for an "umbrella" layout or monorepo. + --- So we specify `limit=2` and treat the highest one (if any) as the root of an umbrella app. + local matches = vim.fs.find({ 'mix.exs' }, { upward = true, limit = 2, path = fname }) + local child_or_root_path, maybe_umbrella_path = unpack(matches) + local root_dir = vim.fs.dirname(maybe_umbrella_path or child_or_root_path) + + on_dir(root_dir) + end, +} diff --git a/.config/nvim/lsp/facility_language_server.lua b/.config/nvim/lsp/facility_language_server.lua new file mode 100644 index 0000000..7a03b87 --- /dev/null +++ b/.config/nvim/lsp/facility_language_server.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/FacilityApi/FacilityLanguageServer +--- +--- Facility language server protocol (LSP) support. + +---@type vim.lsp.Config +return { + cmd = { 'facility-language-server' }, + filetypes = { 'fsd' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/fennel_language_server.lua b/.config/nvim/lsp/fennel_language_server.lua new file mode 100644 index 0000000..8ddf799 --- /dev/null +++ b/.config/nvim/lsp/fennel_language_server.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/rydesun/fennel-language-server +--- +--- Fennel language server protocol (LSP) support. + +---@type vim.lsp.Config +return { + cmd = { 'fennel-language-server' }, + filetypes = { 'fennel' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/fennel_ls.lua b/.config/nvim/lsp/fennel_ls.lua new file mode 100644 index 0000000..acd9341 --- /dev/null +++ b/.config/nvim/lsp/fennel_ls.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://sr.ht/~xerool/fennel-ls/ +--- +--- A language server for fennel. +--- +--- fennel-ls is configured using the closest file to your working directory named `flsproject.fnl`. +--- All fennel-ls configuration options [can be found here](https://git.sr.ht/~xerool/fennel-ls/tree/HEAD/docs/manual.md#configuration). + +---@type vim.lsp.Config +return { + cmd = { 'fennel-ls' }, + filetypes = { 'fennel' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local has_fls_project_cfg = function(path) + local fnlpath = vim.fs.joinpath(path, 'flsproject.fnl') + return (vim.uv.fs_stat(fnlpath) or {}).type == 'file' + end + on_dir(vim.iter(vim.fs.parents(fname)):find(has_fls_project_cfg) or vim.fs.root(0, '.git')) + end, + settings = {}, + capabilities = { + offsetEncoding = { 'utf-8', 'utf-16' }, + }, +} diff --git a/.config/nvim/lsp/fish_lsp.lua b/.config/nvim/lsp/fish_lsp.lua new file mode 100644 index 0000000..05d5cf9 --- /dev/null +++ b/.config/nvim/lsp/fish_lsp.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/ndonfris/fish-lsp +--- +--- A Language Server Protocol (LSP) tailored for the fish shell. +--- This project aims to enhance the coding experience for fish, +--- by introducing a suite of intelligent features like auto-completion, +--- scope aware symbol analysis, per-token hover generation, and many others. +--- +--- [homepage](https://www.fish-lsp.dev/) + +---@type vim.lsp.Config +return { + cmd = { 'fish-lsp', 'start' }, + filetypes = { 'fish' }, + root_markers = { 'config.fish', '.git' }, +} diff --git a/.config/nvim/lsp/flow.lua b/.config/nvim/lsp/flow.lua new file mode 100644 index 0000000..5056831 --- /dev/null +++ b/.config/nvim/lsp/flow.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://flow.org/ +--- https://github.com/facebook/flow +--- +--- See below for how to setup Flow itself. +--- https://flow.org/en/docs/install/ +--- +--- See below for lsp command options. +--- +--- ```sh +--- npx flow lsp --help +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'npx', '--no-install', 'flow', 'lsp' }, + filetypes = { 'javascript', 'javascriptreact', 'javascript.jsx' }, + root_markers = { '.flowconfig' }, +} diff --git a/.config/nvim/lsp/flux_lsp.lua b/.config/nvim/lsp/flux_lsp.lua new file mode 100644 index 0000000..c21319a --- /dev/null +++ b/.config/nvim/lsp/flux_lsp.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/influxdata/flux-lsp +--- `flux-lsp` can be installed via `cargo`: +--- ```sh +--- cargo install --git https://github.com/influxdata/flux-lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'flux-lsp' }, + filetypes = { 'flux' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/foam_ls.lua b/.config/nvim/lsp/foam_ls.lua new file mode 100644 index 0000000..636b066 --- /dev/null +++ b/.config/nvim/lsp/foam_ls.lua @@ -0,0 +1,29 @@ +---@brief +--- +--- https://github.com/FoamScience/foam-language-server +--- +--- `foam-language-server` can be installed via `npm` +--- ```sh +--- npm install -g foam-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'foam-ls', '--stdio' }, + filetypes = { 'foam', 'OpenFOAM' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + for path in vim.fs.parents(fname) do + if vim.uv.fs_stat(path .. '/system/controlDict') then + on_dir(path) + return + end + end + local git_root = vim.fs.root(bufnr, { '.git' }) + if git_root then + on_dir(git_root) + return + end + on_dir(vim.fs.dirname(fname)) + end, +} diff --git a/.config/nvim/lsp/fortls.lua b/.config/nvim/lsp/fortls.lua new file mode 100644 index 0000000..c85f4a5 --- /dev/null +++ b/.config/nvim/lsp/fortls.lua @@ -0,0 +1,27 @@ +---@brief +--- +--- https://fortls.fortran-lang.org/index.html +--- +--- fortls is a Fortran Language Server, the server can be installed via pip +--- +--- ```sh +--- pip install fortls +--- ``` +--- +--- Settings to the server can be passed either through the `cmd` option or through +--- a local configuration file e.g. `.fortls`. For more information +--- see the `fortls` [documentation](https://fortls.fortran-lang.org/options.html). + +---@type vim.lsp.Config +return { + cmd = { + 'fortls', + '--notify_init', + '--hover_signature', + '--hover_language=fortran', + '--use_signature_help', + }, + filetypes = { 'fortran' }, + root_markers = { '.fortls', '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/fsautocomplete.lua b/.config/nvim/lsp/fsautocomplete.lua new file mode 100644 index 0000000..7e0376b --- /dev/null +++ b/.config/nvim/lsp/fsautocomplete.lua @@ -0,0 +1,54 @@ +---@brief +--- +--- https://github.com/fsharp/FsAutoComplete +--- +--- Language Server for F# provided by FsAutoComplete (FSAC). +--- +--- FsAutoComplete requires the [dotnet-sdk](https://dotnet.microsoft.com/download) to be installed. +--- +--- The preferred way to install FsAutoComplete is with `dotnet tool install --global fsautocomplete`. +--- +--- Instructions to compile from source are found on the main [repository](https://github.com/fsharp/FsAutoComplete). +--- +--- You may also need to configure the filetype as Vim defaults to Forth for `*.fs` files: +--- +--- `autocmd BufNewFile,BufRead *.fs,*.fsx,*.fsi set filetype=fsharp` +--- +--- This is automatically done by plugins such as [PhilT/vim-fsharp](https://github.com/PhilT/vim-fsharp), [fsharp/vim-fsharp](https://github.com/fsharp/vim-fsharp), and [adelarsq/neofsharp.vim](https://github.com/adelarsq/neofsharp.vim). +--- + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'fsautocomplete', '--adaptive-lsp-server-enabled' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.sln', '*.fsproj', '.git')(fname)) + end, + filetypes = { 'fsharp' }, + init_options = { + AutomaticWorkspaceInit = true, + }, + -- this recommended settings values taken from https://github.com/ionide/FsAutoComplete?tab=readme-ov-file#settings + settings = { + FSharp = { + keywordsAutocomplete = true, + ExternalAutocomplete = false, + Linter = true, + UnionCaseStubGeneration = true, + UnionCaseStubGenerationBody = 'failwith "Not Implemented"', + RecordStubGeneration = true, + RecordStubGenerationBody = 'failwith "Not Implemented"', + InterfaceStubGeneration = true, + InterfaceStubGenerationObjectIdentifier = 'this', + InterfaceStubGenerationMethodBody = 'failwith "Not Implemented"', + UnusedOpensAnalyzer = true, + UnusedDeclarationsAnalyzer = true, + UseSdkScripts = true, + SimplifyNameAnalyzer = true, + ResolveNamespaces = true, + EnableReferenceCodeLens = true, + }, + }, +} diff --git a/.config/nvim/lsp/fsharp_language_server.lua b/.config/nvim/lsp/fsharp_language_server.lua new file mode 100644 index 0000000..b1de1f7 --- /dev/null +++ b/.config/nvim/lsp/fsharp_language_server.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- F# Language Server +--- https://github.com/faldor20/fsharp-language-server +--- +--- An implementation of the language server protocol using the F# Compiler Service. +--- +--- Build the project from source and override the command path to location of DLL. +--- +--- If filetype determination is not already performed by an available plugin ([PhilT/vim-fsharp](https://github.com/PhilT/vim-fsharp), [fsharp/vim-fsharp](https://github.com/fsharp/vim-fsharp), and [adelarsq/neofsharp.vim](https://github.com/adelarsq/neofsharp.vim). +--- ), then the following must be added to initialization configuration: +--- +--- +--- `autocmd BufNewFile,BufRead *.fs,*.fsx,*.fsi set filetype=fsharp` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'dotnet', 'FSharpLanguageServer.dll' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.sln', '*.fsproj', '.git')(fname)) + end, + filetypes = { 'fsharp' }, + init_options = { + AutomaticWorkspaceInit = true, + }, + settings = {}, +} diff --git a/.config/nvim/lsp/fstar.lua b/.config/nvim/lsp/fstar.lua new file mode 100644 index 0000000..749460f --- /dev/null +++ b/.config/nvim/lsp/fstar.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/FStarLang/FStar +--- +--- LSP support is included in FStar. Make sure `fstar.exe` is in your PATH. + +---@type vim.lsp.Config +return { + cmd = { 'fstar.exe', '--lsp' }, + filetypes = { 'fstar' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/futhark_lsp.lua b/.config/nvim/lsp/futhark_lsp.lua new file mode 100644 index 0000000..351dda3 --- /dev/null +++ b/.config/nvim/lsp/futhark_lsp.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/diku-dk/futhark +--- +--- Futhark Language Server +--- +--- This language server comes with the futhark compiler and is run with the command +--- ``` +--- futhark lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'futhark', 'lsp' }, + filetypes = { 'futhark', 'fut' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/gdscript.lua b/.config/nvim/lsp/gdscript.lua new file mode 100644 index 0000000..d0d25b2 --- /dev/null +++ b/.config/nvim/lsp/gdscript.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/godotengine/godot +--- +--- Language server for GDScript, used by Godot Engine. + +local port = os.getenv 'GDScript_Port' or '6005' +local cmd = vim.lsp.rpc.connect('127.0.0.1', tonumber(port)) + +---@type vim.lsp.Config +return { + cmd = cmd, + filetypes = { 'gd', 'gdscript', 'gdscript3' }, + root_markers = { 'project.godot', '.git' }, +} diff --git a/.config/nvim/lsp/gdshader_lsp.lua b/.config/nvim/lsp/gdshader_lsp.lua new file mode 100644 index 0000000..38a5637 --- /dev/null +++ b/.config/nvim/lsp/gdshader_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/godofavacyn/gdshader-lsp +--- +--- A language server for the Godot Shading language. + +---@type vim.lsp.Config +return { + cmd = { 'gdshader-lsp', '--stdio' }, + filetypes = { 'gdshader', 'gdshaderinc' }, + root_markers = { 'project.godot' }, +} diff --git a/.config/nvim/lsp/gh_actions_ls.lua b/.config/nvim/lsp/gh_actions_ls.lua new file mode 100644 index 0000000..f029ea7 --- /dev/null +++ b/.config/nvim/lsp/gh_actions_ls.lua @@ -0,0 +1,57 @@ +---@brief +--- https://github.com/lttb/gh-actions-language-server +--- +--- Language server for GitHub Actions. +--- +--- The projects [forgejo](https://forgejo.org/) and [gitea](https://about.gitea.com/) +--- design their actions to be as compatible to github as possible +--- with only [a few differences](https://docs.gitea.com/usage/actions/comparison#unsupported-workflows-syntax) between the systems. +--- The `gh_actions_ls` is therefore enabled for those `yaml` files as well. +--- +--- The `gh-actions-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g gh-actions-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'gh-actions-language-server', '--stdio' }, + filetypes = { 'yaml' }, + + -- `root_dir` ensures that the LSP does not attach to all yaml files + root_dir = function(bufnr, on_dir) + local parent = vim.fs.dirname(vim.api.nvim_buf_get_name(bufnr)) + if + vim.endswith(parent, '/.github/workflows') + or vim.endswith(parent, '/.forgejo/workflows') + or vim.endswith(parent, '/.gitea/workflows') + then + on_dir(parent) + end + end, + handlers = { + ['actions/readFile'] = function(_, result) + if type(result.path) ~= 'string' then + return nil, nil + end + local file_path = vim.uri_to_fname(result.path) + if vim.fn.filereadable(file_path) == 1 then + local f = assert(io.open(file_path, 'r')) + local text = f:read('*a') + f:close() + + return text, nil + end + return nil, nil + end, + }, + init_options = {}, -- needs to be present https://github.com/neovim/nvim-lspconfig/pull/3713#issuecomment-2857394868 + capabilities = { + workspace = { + didChangeWorkspaceFolders = { + dynamicRegistration = true, + }, + }, + }, +} diff --git a/.config/nvim/lsp/ghcide.lua b/.config/nvim/lsp/ghcide.lua new file mode 100644 index 0000000..39d4e47 --- /dev/null +++ b/.config/nvim/lsp/ghcide.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/digital-asset/ghcide +--- +--- A library for building Haskell IDE tooling. +--- "ghcide" isn't for end users now. Use "haskell-language-server" instead of "ghcide". + +---@type vim.lsp.Config +return { + cmd = { 'ghcide', '--lsp' }, + filetypes = { 'haskell', 'lhaskell' }, + root_markers = { 'stack.yaml', 'hie-bios', 'BUILD.bazel', 'cabal.config', 'package.yaml' }, +} diff --git a/.config/nvim/lsp/ghdl_ls.lua b/.config/nvim/lsp/ghdl_ls.lua new file mode 100644 index 0000000..3927cfe --- /dev/null +++ b/.config/nvim/lsp/ghdl_ls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/ghdl/ghdl-language-server +--- +--- A language server for VHDL, using ghdl as its backend. +--- +--- `ghdl-ls` is part of pyghdl, for installation instructions see +--- [the upstream README](https://github.com/ghdl/ghdl/tree/master/pyGHDL/lsp). + +---@type vim.lsp.Config +return { + cmd = { 'ghdl-ls' }, + filetypes = { 'vhdl' }, + root_markers = { 'hdl-prj.json', '.git' }, +} diff --git a/.config/nvim/lsp/ginko_ls.lua b/.config/nvim/lsp/ginko_ls.lua new file mode 100644 index 0000000..d9d95df --- /dev/null +++ b/.config/nvim/lsp/ginko_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +---`ginko_ls` is meant to be a feature-complete language server for device-trees. +--- Language servers can be used in many editors, such as Visual Studio Code, Emacs +--- or Vim +--- +--- Install `ginko_ls` from https://github.com/Schottkyc137/ginko and add it to path +--- +--- `ginko_ls` doesn't require any configuration. + +---@type vim.lsp.Config +return { + cmd = { 'ginko_ls' }, + filetypes = { 'dts' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/gitlab_ci_ls.lua b/.config/nvim/lsp/gitlab_ci_ls.lua new file mode 100644 index 0000000..d2f80ab --- /dev/null +++ b/.config/nvim/lsp/gitlab_ci_ls.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/alesbrelih/gitlab-ci-ls +--- +--- Language Server for Gitlab CI +--- +--- `gitlab-ci-ls` can be installed via cargo: +--- cargo install gitlab-ci-ls + +local util = require 'lspconfig.util' + +local cache_dir = vim.uv.os_homedir() .. '/.cache/gitlab-ci-ls/' + +---@type vim.lsp.Config +return { + cmd = { 'gitlab-ci-ls' }, + filetypes = { 'yaml.gitlab' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('.git', '.gitlab*')(fname)) + end, + init_options = { + cache_path = cache_dir, + log_path = cache_dir .. '/log/gitlab-ci-ls.log', + }, +} diff --git a/.config/nvim/lsp/glasgow.lua b/.config/nvim/lsp/glasgow.lua new file mode 100644 index 0000000..5f003b5 --- /dev/null +++ b/.config/nvim/lsp/glasgow.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/nolanderc/glasgow +--- +--- Provides language features for WGSL (WebGPU Shading Language): +--- - Completions: +--- - Local functions/variables/types. +--- - Fields and swizzles. +--- - Builtin types and functions (`dot`, `reflect`, `textureSample`, `vec3`, `mat4x2`, etc.) +--- - Hover Documentation: +--- - Function signatures. +--- - Variable types. +--- - Includes builtin types and functions. Text is taken from the WGSL specification. +--- - Goto Definition +--- - Find all References +--- - Rename +--- - Formatter +--- +--- `glasgow` can be installed via `cargo`: +--- ```sh +--- cargo install glasgow +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'glasgow' }, + filetypes = { 'wgsl' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/gleam.lua b/.config/nvim/lsp/gleam.lua new file mode 100644 index 0000000..6a560e8 --- /dev/null +++ b/.config/nvim/lsp/gleam.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/gleam-lang/gleam +--- +--- A language server for Gleam Programming Language. +--- +--- It comes with the Gleam compiler, for installation see: [Installing Gleam](https://gleam.run/getting-started/installing/) + +---@type vim.lsp.Config +return { + cmd = { 'gleam', 'lsp' }, + filetypes = { 'gleam' }, + root_markers = { 'gleam.toml', '.git' }, +} diff --git a/.config/nvim/lsp/glint.lua b/.config/nvim/lsp/glint.lua new file mode 100644 index 0000000..7da9414 --- /dev/null +++ b/.config/nvim/lsp/glint.lua @@ -0,0 +1,54 @@ +---@brief +--- +--- https://github.com/typed-ember/glint +--- https://typed-ember.gitbook.io/glint/ +--- `glint-language-server` is installed when adding `@glint/core` to your project's devDependencies: +--- +--- ```sh +--- npm install @glint/core --save-dev +--- yarn add -D @glint/core +--- +--- This configuration uses the local installation of `glint-language-server` +--- (found in the `node_modules` directory of your project). +--- +--- To use a global installation of `glint-language-server`, +--- set the `init_options.glint.useGlobal` to `true`. +--- +--- vim.lsp.config('glint', { +--- init_options = { +--- glint = { +--- useGlobal = true, +--- }, +--- }, +--- }) + +---@type vim.lsp.Config +return { + cmd = function(dispatchers, config) + local cmd = (config.init_options.glint.useGlobal or not config.root_dir) and { 'glint-language-server' } + or { config.root_dir .. '/node_modules/.bin/glint-language-server' } + return vim.lsp.rpc.start(cmd, dispatchers) + end, + init_options = { + glint = { + useGlobal = false, + }, + }, + filetypes = { + 'html.handlebars', + 'handlebars', + 'typescript', + 'typescript.glimmer', + 'javascript', + 'javascript.glimmer', + }, + root_markers = { + '.glintrc.yml', + '.glintrc', + '.glintrc.json', + '.glintrc.js', + 'glint.config.js', + 'package.json', + }, + workspace_required = true, +} diff --git a/.config/nvim/lsp/glsl_analyzer.lua b/.config/nvim/lsp/glsl_analyzer.lua new file mode 100644 index 0000000..5cb96d2 --- /dev/null +++ b/.config/nvim/lsp/glsl_analyzer.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/nolanderc/glsl_analyzer +--- +--- Language server for GLSL + +---@type vim.lsp.Config +return { + cmd = { 'glsl_analyzer' }, + filetypes = { 'glsl', 'vert', 'tesc', 'tese', 'frag', 'geom', 'comp' }, + root_markers = { '.git' }, + capabilities = {}, +} diff --git a/.config/nvim/lsp/glslls.lua b/.config/nvim/lsp/glslls.lua new file mode 100644 index 0000000..d5a0af5 --- /dev/null +++ b/.config/nvim/lsp/glslls.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- https://github.com/svenstaro/glsl-language-server +--- +--- Language server implementation for GLSL +--- +--- `glslls` can be compiled and installed manually, or, if your distribution has access to the AUR, +--- via the `glsl-language-server` AUR package + +---@type vim.lsp.Config +return { + cmd = { 'glslls', '--stdin' }, + filetypes = { 'glsl', 'vert', 'tesc', 'tese', 'frag', 'geom', 'comp' }, + root_markers = { '.git' }, + capabilities = { + textDocument = { + completion = { + editsNearCursor = true, + }, + }, + offsetEncoding = { 'utf-8', 'utf-16' }, + }, +} diff --git a/.config/nvim/lsp/gnls.lua b/.config/nvim/lsp/gnls.lua new file mode 100644 index 0000000..be39e44 --- /dev/null +++ b/.config/nvim/lsp/gnls.lua @@ -0,0 +1,21 @@ +---@brief +--- +--- https://github.com/microsoft/gnls +--- +--- Microsoft's language server for GN build files. +--- +--- Assuming there is a `gnls` script somewhere in your `$PATH`, containing +--- for example: +--- +--- ```shell +--- GNLS_SRC_DIR=</path/to/gnls> +--- +--- exec node ${GNLS_SRC_DIR}/build/server.js $@ +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'gnls', '--stdio' }, + filetypes = { 'gn' }, + root_markers = { '.gn', '.git' }, +} diff --git a/.config/nvim/lsp/golangci_lint_ls.lua b/.config/nvim/lsp/golangci_lint_ls.lua new file mode 100644 index 0000000..8a95035 --- /dev/null +++ b/.config/nvim/lsp/golangci_lint_ls.lua @@ -0,0 +1,52 @@ +---@brief +--- +--- Combination of both lint server and client +--- +--- https://github.com/nametake/golangci-lint-langserver +--- https://github.com/golangci/golangci-lint +--- +--- +--- Installation of binaries needed is done via +--- +--- ``` +--- go install github.com/nametake/golangci-lint-langserver@latest +--- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'golangci-lint-langserver' }, + filetypes = { 'go', 'gomod' }, + init_options = { + command = { 'golangci-lint', 'run', '--output.json.path=stdout', '--show-stats=false' }, + }, + root_markers = { + '.golangci.yml', + '.golangci.yaml', + '.golangci.toml', + '.golangci.json', + 'go.work', + 'go.mod', + '.git', + }, + before_init = function(_, config) + -- Add support for golangci-lint V1 (in V2 `--out-format=json` was replaced by + -- `--output.json.path=stdout`). + local v1, v2 = false, false + -- PERF: `golangci-lint version` is very slow (about 0.1 sec) so let's find + -- version using `go version -m $(which golangci-lint) | grep '^\smod'`. + if vim.fn.executable 'go' == 1 then + local exe = vim.fn.exepath 'golangci-lint' + local version = vim.system({ 'go', 'version', '-m', exe }):wait() + v1 = string.match(version.stdout, '\tmod\tgithub.com/golangci/golangci%-lint\t') + v2 = string.match(version.stdout, '\tmod\tgithub.com/golangci/golangci%-lint/v2\t') + end + if not v1 and not v2 then + local version = vim.system({ 'golangci-lint', 'version' }):wait() + v1 = string.match(version.stdout, 'version v?1%.') + end + if v1 then + config.init_options.command = { 'golangci-lint', 'run', '--out-format', 'json' } + end + end, +} diff --git a/.config/nvim/lsp/gopls.lua b/.config/nvim/lsp/gopls.lua new file mode 100644 index 0000000..558f0a9 --- /dev/null +++ b/.config/nvim/lsp/gopls.lua @@ -0,0 +1,99 @@ +---@brief +--- +--- https://github.com/golang/tools/tree/master/gopls +--- +--- Google's lsp server for golang. + +--- @class go_dir_custom_args +--- +--- @field envvar_id string +--- +--- @field custom_subdir string? + +local mod_cache = nil +local std_lib = nil + +---@param custom_args go_dir_custom_args +---@param on_complete fun(dir: string | nil) +local function identify_go_dir(custom_args, on_complete) + local cmd = { 'go', 'env', custom_args.envvar_id } + vim.system(cmd, { text = true }, function(output) + local res = vim.trim(output.stdout or '') + if output.code == 0 and res ~= '' then + if custom_args.custom_subdir and custom_args.custom_subdir ~= '' then + res = res .. custom_args.custom_subdir + end + on_complete(res) + else + vim.schedule(function() + vim.notify( + ('[gopls] identify ' .. custom_args.envvar_id .. ' dir cmd failed with code %d: %s\n%s'):format( + output.code, + vim.inspect(cmd), + output.stderr + ) + ) + end) + on_complete(nil) + end + end) +end + +---@return string? +local function get_std_lib_dir() + if std_lib and std_lib ~= '' then + return std_lib + end + + identify_go_dir({ envvar_id = 'GOROOT', custom_subdir = '/src' }, function(dir) + if dir then + std_lib = dir + end + end) + return std_lib +end + +---@return string? +local function get_mod_cache_dir() + if mod_cache and mod_cache ~= '' then + return mod_cache + end + + identify_go_dir({ envvar_id = 'GOMODCACHE' }, function(dir) + if dir then + mod_cache = dir + end + end) + return mod_cache +end + +---@param fname string +---@return string? +local function get_root_dir(fname) + if mod_cache and fname:sub(1, #mod_cache) == mod_cache then + local clients = vim.lsp.get_clients({ name = 'gopls' }) + if #clients > 0 then + return clients[#clients].config.root_dir + end + end + if std_lib and fname:sub(1, #std_lib) == std_lib then + local clients = vim.lsp.get_clients({ name = 'gopls' }) + if #clients > 0 then + return clients[#clients].config.root_dir + end + end + return vim.fs.root(fname, 'go.work') or vim.fs.root(fname, 'go.mod') or vim.fs.root(fname, '.git') +end + +---@type vim.lsp.Config +return { + cmd = { 'gopls' }, + filetypes = { 'go', 'gomod', 'gowork', 'gotmpl' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + get_mod_cache_dir() + get_std_lib_dir() + -- see: https://github.com/neovim/nvim-lspconfig/issues/804 + on_dir(get_root_dir(fname)) + end, +} diff --git a/.config/nvim/lsp/gradle_ls.lua b/.config/nvim/lsp/gradle_ls.lua new file mode 100644 index 0000000..1974d77 --- /dev/null +++ b/.config/nvim/lsp/gradle_ls.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/microsoft/vscode-gradle +--- +--- Microsoft's lsp server for gradle files +--- +--- If you're setting this up manually, build vscode-gradle using `./gradlew installDist` and point `cmd` to the `gradle-language-server` generated in the build directory + +local bin_name = 'gradle-language-server' +if vim.fn.has 'win32' == 1 then + bin_name = bin_name .. '.bat' +end + +---@type vim.lsp.Config +return { + filetypes = { 'groovy' }, + root_markers = { + 'settings.gradle', -- Gradle (multi-project) + 'build.gradle', -- Gradle + }, + cmd = { bin_name }, + -- gradle-language-server expects init_options.settings to be defined + init_options = { + settings = { + gradleWrapperEnabled = true, + }, + }, +} diff --git a/.config/nvim/lsp/grammarly.lua b/.config/nvim/lsp/grammarly.lua new file mode 100644 index 0000000..a8ebcd0 --- /dev/null +++ b/.config/nvim/lsp/grammarly.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/znck/grammarly +--- +--- `grammarly-languageserver` can be installed via `npm`: +--- +--- ```sh +--- npm i -g grammarly-languageserver +--- ``` +--- +--- WARNING: Since this language server uses Grammarly's API, any document you open with it running is shared with them. Please evaluate their [privacy policy](https://www.grammarly.com/privacy-policy) before using this. + +---@type vim.lsp.Config +return { + cmd = { 'grammarly-languageserver', '--stdio' }, + filetypes = { 'markdown' }, + root_markers = { '.git' }, + handlers = { + ['$/updateDocumentState'] = function() + return '' + end, + }, + init_options = { + clientId = 'client_BaDkMgx4X19X9UxxYRCXZo', + }, +} diff --git a/.config/nvim/lsp/graphql.lua b/.config/nvim/lsp/graphql.lua new file mode 100644 index 0000000..27a8603 --- /dev/null +++ b/.config/nvim/lsp/graphql.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-cli +--- +--- `graphql-lsp` can be installed via `npm`: +--- +--- ```sh +--- npm install -g graphql-language-service-cli +--- ``` +--- +--- Note that you must also have [the graphql package](https://github.com/graphql/graphql-js) installed within your project and create a [GraphQL config file](https://the-guild.dev/graphql/config/docs). + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'graphql-lsp', 'server', '-m', 'stream' }, + filetypes = { 'graphql', 'typescriptreact', 'javascriptreact' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('.graphqlrc*', '.graphql.config.*', 'graphql.config.*')(fname)) + end, +} diff --git a/.config/nvim/lsp/groovyls.lua b/.config/nvim/lsp/groovyls.lua new file mode 100644 index 0000000..e1cb8f6 --- /dev/null +++ b/.config/nvim/lsp/groovyls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/prominic/groovy-language-server.git +--- +--- Requirements: +--- - Linux/macOS (for now) +--- - Java 11+ +--- +--- `groovyls` can be installed by following the instructions [here](https://github.com/prominic/groovy-language-server.git#build). +--- +--- If you have installed groovy language server, you can set the `cmd` custom path as follow: +--- +--- ```lua +--- vim.lsp.config('groovyls', { +--- -- Unix +--- cmd = { "java", "-jar", "path/to/groovyls/groovy-language-server-all.jar" }, +--- ... +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { + 'java', + '-jar', + 'groovy-language-server-all.jar', + }, + filetypes = { 'groovy' }, + root_markers = { 'Jenkinsfile', '.git' }, +} diff --git a/.config/nvim/lsp/guile_ls.lua b/.config/nvim/lsp/guile_ls.lua new file mode 100644 index 0000000..58bb6c7 --- /dev/null +++ b/.config/nvim/lsp/guile_ls.lua @@ -0,0 +1,21 @@ +---@brief +--- +--- https://codeberg.org/rgherdt/scheme-lsp-server +--- +--- The recommended way is to install guile-lsp-server is using Guix. Unfortunately it is still not available at the official Guix channels, but you can use the provided channel guix.scm in the repo: +--- ```sh +--- guix package -f guix.scm +--- ``` +--- +--- Checkout the repo for more info. +--- +--- Note: This LSP will start on `scheme.guile` filetype. You can set this file type using `:help modeline` or adding https://gitlab.com/HiPhish/guile.vim to your plugins to automatically set it. + +---@type vim.lsp.Config +return { + cmd = { 'guile-lsp-server' }, + filetypes = { + 'scheme.guile', + }, + root_markers = { 'guix.scm', '.git' }, +} diff --git a/.config/nvim/lsp/harper_ls.lua b/.config/nvim/lsp/harper_ls.lua new file mode 100644 index 0000000..ca157fb --- /dev/null +++ b/.config/nvim/lsp/harper_ls.lua @@ -0,0 +1,51 @@ +---@brief +--- +--- https://github.com/automattic/harper +--- +--- The language server for Harper, the slim, clean language checker for developers. +--- +--- See our [documentation](https://writewithharper.com/docs/integrations/neovim) for more information on settings. +--- +--- In short, they should look something like this: +--- ```lua +--- vim.lsp.config('harper_ls', { +--- settings = { +--- ["harper-ls"] = { +--- userDictPath = "~/dict.txt" +--- } +--- }, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'harper-ls', '--stdio' }, + filetypes = { + 'c', + 'cpp', + 'cs', + 'gitcommit', + 'go', + 'html', + 'java', + 'javascript', + 'lua', + 'markdown', + 'nix', + 'python', + 'ruby', + 'rust', + 'swift', + 'toml', + 'typescript', + 'typescriptreact', + 'haskell', + 'cmake', + 'typst', + 'php', + 'dart', + 'clojure', + 'sh', + }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/hdl_checker.lua b/.config/nvim/lsp/hdl_checker.lua new file mode 100644 index 0000000..bd0912c --- /dev/null +++ b/.config/nvim/lsp/hdl_checker.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/suoto/hdl_checker +--- Language server for hdl-checker. +--- Install using: `pip install hdl-checker --upgrade` + +---@type vim.lsp.Config +return { + cmd = { 'hdl_checker', '--lsp' }, + filetypes = { 'vhdl', 'verilog', 'systemverilog' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/helm_ls.lua b/.config/nvim/lsp/helm_ls.lua new file mode 100644 index 0000000..a2deb89 --- /dev/null +++ b/.config/nvim/lsp/helm_ls.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://github.com/mrjosh/helm-ls +--- +--- Helm Language server. (This LSP is in early development) +--- +--- `helm Language server` can be installed by following the instructions [here](https://github.com/mrjosh/helm-ls). +--- +--- The default `cmd` assumes that the `helm_ls` binary can be found in `$PATH`. +--- +--- If need Helm file highlight use [vim-helm](https://github.com/towolf/vim-helm) plugin. + +---@type vim.lsp.Config +return { + cmd = { 'helm_ls', 'serve' }, + filetypes = { 'helm', 'yaml.helm-values' }, + root_markers = { 'Chart.yaml' }, + capabilities = { + workspace = { + didChangeWatchedFiles = { + dynamicRegistration = true, + }, + }, + }, +} diff --git a/.config/nvim/lsp/herb_ls.lua b/.config/nvim/lsp/herb_ls.lua new file mode 100644 index 0000000..637eb56 --- /dev/null +++ b/.config/nvim/lsp/herb_ls.lua @@ -0,0 +1,29 @@ +---@brief +--- +--- https://www.npmjs.com/package/@herb-tools/language-server +--- https://github.com/marcoroth/herb +--- +--- HTML+ERB (HTML + Embedded Ruby) +--- Powerful and seamless HTML-aware ERB parsing and tooling. +--- +--- Herb is designed from the ground up to deeply understand `.html.erb` files, +--- preserving both HTML and embedded Ruby structure without losing any details. +--- +--- `herb-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g @herb-tools/language-server +--- ``` +--- +--- or via `yarn`: +--- +--- ```sh +--- yarn global add @herb-tools/language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'herb-language-server', '--stdio' }, + filetypes = { 'html', 'eruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/hhvm.lua b/.config/nvim/lsp/hhvm.lua new file mode 100644 index 0000000..2016614 --- /dev/null +++ b/.config/nvim/lsp/hhvm.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- Language server for programs written in Hack +--- https://hhvm.com/ +--- https://github.com/facebook/hhvm +--- See below for how to setup HHVM & typechecker: +--- https://docs.hhvm.com/hhvm/getting-started/getting-started + +---@type vim.lsp.Config +return { + cmd = { 'hh_client', 'lsp' }, + filetypes = { 'php', 'hack' }, + root_markers = { '.hhconfig' }, +} diff --git a/.config/nvim/lsp/hie.lua b/.config/nvim/lsp/hie.lua new file mode 100644 index 0000000..8d6acac --- /dev/null +++ b/.config/nvim/lsp/hie.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://github.com/haskell/haskell-ide-engine +--- +--- the following init_options are supported (see https://github.com/haskell/haskell-ide-engine#configuration): +--- ```lua +--- init_options = { +--- languageServerHaskell = { +--- hlintOn = bool; +--- maxNumberOfProblems = number; +--- diagnosticsDebounceDuration = number; +--- liquidOn = bool (default false); +--- completionSnippetsOn = bool (default true); +--- formatOnImportOn = bool (default true); +--- formattingProvider = string (default "brittany", alternate "floskell"); +--- } +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'hie-wrapper', '--lsp' }, + filetypes = { 'haskell' }, + root_markers = { 'stack.yaml', 'package.yaml', '.git' }, +} diff --git a/.config/nvim/lsp/hlasm.lua b/.config/nvim/lsp/hlasm.lua new file mode 100644 index 0000000..9ca794d --- /dev/null +++ b/.config/nvim/lsp/hlasm.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- `hlasm_language_server` is a language server for the High Level Assembler language used on IBM SystemZ mainframes. +--- +--- To learn how to configure the HLASM language server, see the [HLASM Language Support documentation](https://github.com/eclipse-che4z/che-che4z-lsp-for-hlasm). + +---@type vim.lsp.Config +return { + cmd = { 'hlasm_language_server' }, + filetypes = { 'hlasm' }, + root_markers = { '.hlasmplugin' }, +} diff --git a/.config/nvim/lsp/hls.lua b/.config/nvim/lsp/hls.lua new file mode 100644 index 0000000..705a97d --- /dev/null +++ b/.config/nvim/lsp/hls.lua @@ -0,0 +1,31 @@ +---@brief +--- +--- https://github.com/haskell/haskell-language-server +--- +--- Haskell Language Server +--- +--- If you are using HLS 1.9.0.0, enable the language server to launch on Cabal files as well: +--- +--- ```lua +--- vim.lsp.config('hls', { +--- filetypes = { 'haskell', 'lhaskell', 'cabal' }, +--- }) +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'haskell-language-server-wrapper', '--lsp' }, + filetypes = { 'haskell', 'lhaskell' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('hie.yaml', 'stack.yaml', 'cabal.project', '*.cabal', 'package.yaml')(fname)) + end, + settings = { + haskell = { + formattingProvider = 'ormolu', + cabalFormattingProvider = 'cabalfmt', + }, + }, +} diff --git a/.config/nvim/lsp/hoon_ls.lua b/.config/nvim/lsp/hoon_ls.lua new file mode 100644 index 0000000..165c803 --- /dev/null +++ b/.config/nvim/lsp/hoon_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/urbit/hoon-language-server +--- +--- A language server for Hoon. +--- +--- The language server can be installed via `npm install -g @hoon-language-server` +--- +--- Start a fake ~zod with `urbit -F zod`. +--- Start the language server at the Urbit Dojo prompt with: `|start %language-server` + +---@type vim.lsp.Config +return { + cmd = { 'hoon-language-server' }, + filetypes = { 'hoon' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/html.lua b/.config/nvim/lsp/html.lua new file mode 100644 index 0000000..2b53d32 --- /dev/null +++ b/.config/nvim/lsp/html.lua @@ -0,0 +1,36 @@ +---@brief +--- +--- https://github.com/hrsh7th/vscode-langservers-extracted +--- +--- `vscode-html-language-server` can be installed via `npm`: +--- ```sh +--- npm i -g vscode-langservers-extracted +--- ``` +--- +--- Neovim does not currently include built-in snippets. `vscode-html-language-server` only provides completions when snippet support is enabled. +--- To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup. +--- +--- The code-formatting feature of the lsp can be controlled with the `provideFormatter` option. +--- +--- ```lua +--- --Enable (broadcasting) snippet capability for completion +--- local capabilities = vim.lsp.protocol.make_client_capabilities() +--- capabilities.textDocument.completion.completionItem.snippetSupport = true +--- +--- vim.lsp.config('html', { +--- capabilities = capabilities, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vscode-html-language-server', '--stdio' }, + filetypes = { 'html', 'templ' }, + root_markers = { 'package.json', '.git' }, + settings = {}, + init_options = { + provideFormatter = true, + embeddedLanguages = { css = true, javascript = true }, + configurationSection = { 'html', 'css', 'javascript' }, + }, +} diff --git a/.config/nvim/lsp/htmx.lua b/.config/nvim/lsp/htmx.lua new file mode 100644 index 0000000..87b0429 --- /dev/null +++ b/.config/nvim/lsp/htmx.lua @@ -0,0 +1,64 @@ +---@brief +--- +--- https://github.com/ThePrimeagen/htmx-lsp +--- +--- `htmx-lsp` can be installed via `cargo`: +--- ```sh +--- cargo install htmx-lsp +--- ``` +--- +--- Lsp is still very much work in progress and experimental. Use at your own risk. + +---@type vim.lsp.Config +return { + cmd = { 'htmx-lsp' }, + filetypes = { -- filetypes copied and adjusted from tailwindcss-intellisense + -- html + 'aspnetcorerazor', + 'astro', + 'astro-markdown', + 'blade', + 'clojure', + 'django-html', + 'htmldjango', + 'edge', + 'eelixir', -- vim ft + 'elixir', + 'ejs', + 'erb', + 'eruby', -- vim ft + 'gohtml', + 'gohtmltmpl', + 'haml', + 'handlebars', + 'hbs', + 'html', + 'htmlangular', + 'html-eex', + 'heex', + 'jade', + 'leaf', + 'liquid', + 'markdown', + 'mdx', + 'mustache', + 'njk', + 'nunjucks', + 'php', + 'razor', + 'slim', + 'twig', + -- js + 'javascript', + 'javascriptreact', + 'reason', + 'rescript', + 'typescript', + 'typescriptreact', + -- mixed + 'vue', + 'svelte', + 'templ', + }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/hydra_lsp.lua b/.config/nvim/lsp/hydra_lsp.lua new file mode 100644 index 0000000..b443433 --- /dev/null +++ b/.config/nvim/lsp/hydra_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/Retsediv/hydra-lsp +--- +--- LSP for Hydra Python package config files. + +---@type vim.lsp.Config +return { + cmd = { 'hydra-lsp' }, + filetypes = { 'yaml' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/hyprls.lua b/.config/nvim/lsp/hyprls.lua new file mode 100644 index 0000000..64d7cda --- /dev/null +++ b/.config/nvim/lsp/hyprls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/hyprland-community/hyprls +--- +--- `hyprls` can be installed via `go`: +--- ```sh +--- go install github.com/hyprland-community/hyprls/cmd/hyprls@latest +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'hyprls', '--stdio' }, + filetypes = { 'hyprlang' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/idris2_lsp.lua b/.config/nvim/lsp/idris2_lsp.lua new file mode 100644 index 0000000..d7f153e --- /dev/null +++ b/.config/nvim/lsp/idris2_lsp.lua @@ -0,0 +1,42 @@ +---@brief +--- +--- https://github.com/idris-community/idris2-lsp +--- +--- The Idris 2 language server. +--- +--- Plugins for the Idris 2 filetype include +--- [Idris2-Vim](https://github.com/edwinb/idris2-vim) (fewer features, stable) and +--- [Nvim-Idris2](https://github.com/ShinKage/nvim-idris2) (cutting-edge, +--- experimental). +--- +--- Idris2-Lsp requires a build of Idris 2 that includes the "Idris 2 API" package. +--- Package managers with known support for this build include the +--- [AUR](https://aur.archlinux.org/packages/idris2/) and +--- [Homebrew](https://formulae.brew.sh/formula/idris2#default). +--- +--- If your package manager does not support the Idris 2 API, you will need to build +--- Idris 2 from source. Refer to the +--- [the Idris 2 installation instructions](https://github.com/idris-lang/Idris2/blob/main/INSTALL.md) +--- for details. Steps 5 and 8 are listed as "optional" in that guide, but they are +--- necessary in order to make the Idris 2 API available. +--- +--- You need to install a version of Idris2-Lsp that is compatible with your +--- version of Idris 2. There should be a branch corresponding to every released +--- Idris 2 version after v0.4.0. Use the latest commit on that branch. For example, +--- if you have Idris v0.5.1, you should use the v0.5.1 branch of Idris2-Lsp. +--- +--- If your Idris 2 version is newer than the newest Idris2-Lsp branch, use the +--- latest commit on the `master` branch, and set a reminder to check the Idris2-Lsp +--- repo for the release of a compatible versioned branch. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'idris2-lsp' }, + filetypes = { 'idris2' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern '*.ipkg'(fname)) + end, +} diff --git a/.config/nvim/lsp/intelephense.lua b/.config/nvim/lsp/intelephense.lua new file mode 100644 index 0000000..8a91c40 --- /dev/null +++ b/.config/nvim/lsp/intelephense.lua @@ -0,0 +1,33 @@ +---@brief +--- +--- https://intelephense.com/ +--- +--- `intelephense` can be installed via `npm`: +--- ```sh +--- npm install -g intelephense +--- ``` +--- +--- ```lua +--- -- See https://github.com/bmewburn/intelephense-docs/blob/master/installation.md#initialisation-options +--- init_options = { +--- storagePath = …, -- Optional absolute path to storage dir. Defaults to os.tmpdir(). +--- globalStoragePath = …, -- Optional absolute path to a global storage dir. Defaults to os.homedir(). +--- licenceKey = …, -- Optional licence key or absolute path to a text file containing the licence key. +--- clearCache = …, -- Optional flag to clear server state. State can also be cleared by deleting {storagePath}/intelephense +--- } +--- -- See https://github.com/bmewburn/intelephense-docs +--- settings = { +--- intelephense = { +--- files = { +--- maxSize = 1000000; +--- }; +--- }; +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'intelephense', '--stdio' }, + filetypes = { 'php' }, + root_markers = { '.git', 'composer.json' }, +} diff --git a/.config/nvim/lsp/janet_lsp.lua b/.config/nvim/lsp/janet_lsp.lua new file mode 100644 index 0000000..7d444e4 --- /dev/null +++ b/.config/nvim/lsp/janet_lsp.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/CFiggers/janet-lsp +--- +--- A Language Server Protocol implementation for Janet. + +---@type vim.lsp.Config +return { + cmd = { + 'janet-lsp', + '--stdio', + }, + filetypes = { 'janet' }, + root_markers = { 'project.janet', '.git' }, +} diff --git a/.config/nvim/lsp/java_language_server.lua b/.config/nvim/lsp/java_language_server.lua new file mode 100644 index 0000000..1458254 --- /dev/null +++ b/.config/nvim/lsp/java_language_server.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/georgewfraser/java-language-server +--- +--- Java language server +--- +--- Point `cmd` to `lang_server_linux.sh` or the equivalent script for macOS/Windows provided by java-language-server + +---@type vim.lsp.Config +return { + filetypes = { 'java' }, + root_markers = { 'build.gradle', 'build.gradle.kts', 'pom.xml', '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/jdtls.lua b/.config/nvim/lsp/jdtls.lua new file mode 100644 index 0000000..4026047 --- /dev/null +++ b/.config/nvim/lsp/jdtls.lua @@ -0,0 +1,102 @@ +---@brief +--- +--- https://projects.eclipse.org/projects/eclipse.jdt.ls +--- +--- Language server for Java. +--- +--- IMPORTANT: If you want all the features jdtls has to offer, [nvim-jdtls](https://github.com/mfussenegger/nvim-jdtls) +--- is highly recommended. If all you need is diagnostics, completion, imports, gotos and formatting and some code actions +--- you can keep reading here. +--- +--- For manual installation you can download precompiled binaries from the +--- [official downloads site](http://download.eclipse.org/jdtls/snapshots/?d) +--- and ensure that the `PATH` variable contains the `bin` directory of the extracted archive. +--- +--- ```lua +--- -- init.lua +--- vim.lsp.enable('jdtls') +--- ``` +--- +--- You can also pass extra custom jvm arguments with the JDTLS_JVM_ARGS environment variable as a space separated list of arguments, +--- that will be converted to multiple --jvm-arg=<param> args when passed to the jdtls script. This will allow for example tweaking +--- the jvm arguments or integration with external tools like lombok: +--- +--- ```sh +--- export JDTLS_JVM_ARGS="-javaagent:$HOME/.local/share/java/lombok.jar" +--- ``` +--- +--- For automatic installation you can use the following unofficial installers/launchers under your own risk: +--- - [jdtls-launcher](https://github.com/eruizc-dev/jdtls-launcher) (Includes lombok support by default) +--- ```lua +--- -- init.lua +--- vim.lsp.config('jdtls', { cmd = { 'jdtls' } }) +--- ``` + +local function get_jdtls_cache_dir() + return vim.fn.stdpath('cache') .. '/jdtls' +end + +local function get_jdtls_workspace_dir() + return get_jdtls_cache_dir() .. '/workspace' +end + +local function get_jdtls_jvm_args() + local env = os.getenv('JDTLS_JVM_ARGS') + local args = {} + for a in string.gmatch((env or ''), '%S+') do + local arg = string.format('--jvm-arg=%s', a) + table.insert(args, arg) + end + return unpack(args) +end + +local root_markers1 = { + -- Multi-module projects + 'mvnw', + 'gradlew', + 'build.gradle', + 'build.gradle.kts', + -- Use git directory as last resort for multi-module maven projects + -- In multi-module maven projects it is not really possible to determine what is the parent directory + -- and what is submodule directory. And jdtls does not break if the parent directory is at higher level than + -- actual parent pom.xml so propagating all the way to root git directory is fine + '.git', +} +local root_markers2 = { + -- Single-module projects + 'build.xml', -- Ant + 'pom.xml', -- Maven + 'settings.gradle', -- Gradle + 'settings.gradle.kts', -- Gradle +} + +---@type vim.lsp.Config +return { + ---@param dispatchers? vim.lsp.rpc.Dispatchers + ---@param config vim.lsp.ClientConfig + cmd = function(dispatchers, config) + local workspace_dir = get_jdtls_workspace_dir() + local data_dir = workspace_dir + + if config.root_dir then + data_dir = data_dir .. '/' .. vim.fn.fnamemodify(config.root_dir, ':p:h:t') + end + + local config_cmd = { + 'jdtls', + '-data', + data_dir, + get_jdtls_jvm_args(), + } + + return vim.lsp.rpc.start(config_cmd, dispatchers, { + cwd = config.cmd_cwd, + env = config.cmd_env, + detached = config.detached, + }) + end, + filetypes = { 'java' }, + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers1, root_markers2 } + or vim.list_extend(root_markers1, root_markers2), + init_options = {}, +} diff --git a/.config/nvim/lsp/jedi_language_server.lua b/.config/nvim/lsp/jedi_language_server.lua new file mode 100644 index 0000000..99427a4 --- /dev/null +++ b/.config/nvim/lsp/jedi_language_server.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/pappasam/jedi-language-server +--- +--- `jedi-language-server`, a language server for Python, built on top of jedi + +---@type vim.lsp.Config +return { + cmd = { 'jedi-language-server' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + '.git', + }, +} diff --git a/.config/nvim/lsp/jinja_lsp.lua b/.config/nvim/lsp/jinja_lsp.lua new file mode 100644 index 0000000..c3a034f --- /dev/null +++ b/.config/nvim/lsp/jinja_lsp.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- jinja-lsp enhances minijinja development experience by providing Helix/Nvim users with advanced features such as autocomplete, syntax highlighting, hover, goto definition, code actions and linting. +--- +--- The file types are not detected automatically, you can register them manually (see below) or override the filetypes: +--- +--- ```lua +--- vim.filetype.add { +--- extension = { +--- jinja = 'jinja', +--- jinja2 = 'jinja', +--- j2 = 'jinja', +--- }, +--- } +--- ``` + +---@type vim.lsp.Config +return { + name = 'jinja_lsp', + cmd = { 'jinja-lsp' }, + filetypes = { 'jinja' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/jqls.lua b/.config/nvim/lsp/jqls.lua new file mode 100644 index 0000000..2fcdeb3 --- /dev/null +++ b/.config/nvim/lsp/jqls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/wader/jq-lsp +--- Language server for jq, written using Go. +--- You can install the server easily using go install: +--- ```sh +--- # install directly +--- go install github.com/wader/jq-lsp@master +--- # copy binary to $PATH +--- cp $(go env GOPATH)/bin/jq-lsp /usr/local/bin +--- +--- ``` +--- Note: To activate properly nvim needs to know the jq filetype. +--- You can add it via: +--- ```lua +--- vim.cmd([[au BufRead,BufNewFile *.jq setfiletype jq]]) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'jq-lsp' }, + filetypes = { 'jq' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/jsonls.lua b/.config/nvim/lsp/jsonls.lua new file mode 100644 index 0000000..93ae1db --- /dev/null +++ b/.config/nvim/lsp/jsonls.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- https://github.com/hrsh7th/vscode-langservers-extracted +--- +--- vscode-json-language-server, a language server for JSON and JSON schema +--- +--- `vscode-json-language-server` can be installed via `npm`: +--- ```sh +--- npm i -g vscode-langservers-extracted +--- ``` +--- +--- `vscode-json-language-server` only provides completions when snippet support is enabled. If you use Neovim older than v0.10 you need to enable completion, install a snippet plugin and add the following override to your language client capabilities during setup. +--- +--- ```lua +--- --Enable (broadcasting) snippet capability for completion +--- local capabilities = vim.lsp.protocol.make_client_capabilities() +--- capabilities.textDocument.completion.completionItem.snippetSupport = true +--- +--- vim.lsp.config('jsonls', { +--- capabilities = capabilities, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vscode-json-language-server', '--stdio' }, + filetypes = { 'json', 'jsonc' }, + init_options = { + provideFormatter = true, + }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/jsonnet_ls.lua b/.config/nvim/lsp/jsonnet_ls.lua new file mode 100644 index 0000000..c5b0dee --- /dev/null +++ b/.config/nvim/lsp/jsonnet_ls.lua @@ -0,0 +1,20 @@ +--- @brief +--- +--- https://github.com/grafana/jsonnet-language-server +--- +--- A Language Server Protocol (LSP) server for Jsonnet. +--- +--- The language server can be installed with `go`: +--- ```sh +--- go install github.com/grafana/jsonnet-language-server@latest +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'jsonnet-language-server' }, + filetypes = { + 'jsonnet', + 'libsonnet', + }, + root_markers = { 'jsonnetfile.json', '.git' }, +} diff --git a/.config/nvim/lsp/julials.lua b/.config/nvim/lsp/julials.lua new file mode 100644 index 0000000..949a7e8 --- /dev/null +++ b/.config/nvim/lsp/julials.lua @@ -0,0 +1,131 @@ +---@brief +--- +--- https://github.com/julia-vscode/julia-vscode +--- +--- LanguageServer.jl can be installed with `julia` and `Pkg`: +--- ```sh +--- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer")' +--- ``` +--- where `~/.julia/environments/nvim-lspconfig` is the location where +--- the default configuration expects LanguageServer.jl to be installed. +--- +--- To update an existing install, use the following command: +--- ```sh +--- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.update()' +--- ``` +--- +--- Note: In order to have LanguageServer.jl pick up installed packages or dependencies in a +--- Julia project, you must make sure that the project is instantiated: +--- ```sh +--- julia --project=/path/to/my/project -e 'using Pkg; Pkg.instantiate()' +--- ``` +--- +--- Note: The julia programming language searches for global environments within the `environments/` +--- folder of `$JULIA_DEPOT_PATH` entries. By default this simply `~/.julia/environments` + +local root_files = { 'Project.toml', 'JuliaProject.toml' } + +local function activate_env(path) + assert(vim.fn.has 'nvim-0.10' == 1, 'requires Nvim 0.10 or newer') + local bufnr = vim.api.nvim_get_current_buf() + local julials_clients = vim.lsp.get_clients { bufnr = bufnr, name = 'julials' } + assert( + #julials_clients > 0, + 'method julia/activateenvironment is not supported by any servers active on the current buffer' + ) + local function _activate_env(environment) + if environment then + for _, julials_client in ipairs(julials_clients) do + julials_client:notify('julia/activateenvironment', { envPath = environment }) + end + vim.notify('Julia environment activated: \n`' .. environment .. '`', vim.log.levels.INFO) + end + end + if path then + path = vim.fs.normalize(vim.fn.fnamemodify(vim.fn.expand(path), ':p')) + local found_env = false + for _, project_file in ipairs(root_files) do + local file = vim.uv.fs_stat(vim.fs.joinpath(path, project_file)) + if file and file.type then + found_env = true + break + end + end + if not found_env then + vim.notify('Path is not a julia environment: \n`' .. path .. '`', vim.log.levels.WARN) + return + end + _activate_env(path) + else + local depot_paths = vim.env.JULIA_DEPOT_PATH + and vim.split(vim.env.JULIA_DEPOT_PATH, vim.fn.has 'win32' == 1 and ';' or ':') + or { vim.fn.expand '~/.julia' } + local environments = {} + vim.list_extend(environments, vim.fs.find(root_files, { type = 'file', upward = true, limit = math.huge })) + for _, depot_path in ipairs(depot_paths) do + local depot_env = vim.fs.joinpath(vim.fs.normalize(depot_path), 'environments') + vim.list_extend( + environments, + vim.fs.find(function(name, env_path) + return vim.tbl_contains(root_files, name) and string.sub(env_path, #depot_env + 1):match '^/[^/]*$' + end, { path = depot_env, type = 'file', limit = math.huge }) + ) + end + environments = vim.tbl_map(vim.fs.dirname, environments) + vim.ui.select(environments, { prompt = 'Select a Julia environment' }, _activate_env) + end +end + +local cmd = { + 'julia', + '--startup-file=no', + '--history-file=no', + '-e', + [[ + # Load LanguageServer.jl: attempt to load from ~/.julia/environments/nvim-lspconfig + # with the regular load path as a fallback + ls_install_path = joinpath( + get(DEPOT_PATH, 1, joinpath(homedir(), ".julia")), + "environments", "nvim-lspconfig" + ) + pushfirst!(LOAD_PATH, ls_install_path) + using LanguageServer + popfirst!(LOAD_PATH) + depot_path = get(ENV, "JULIA_DEPOT_PATH", "") + project_path = let + dirname(something( + ## 1. Finds an explicitly set project (JULIA_PROJECT) + Base.load_path_expand(( + p = get(ENV, "JULIA_PROJECT", nothing); + p === nothing ? nothing : isempty(p) ? nothing : p + )), + ## 2. Look for a Project.toml file in the current working directory, + ## or parent directories, with $HOME as an upper boundary + Base.current_project(), + ## 3. First entry in the load path + get(Base.load_path(), 1, nothing), + ## 4. Fallback to default global environment, + ## this is more or less unreachable + Base.load_path_expand("@v#.#"), + )) + end + @info "Running language server" VERSION pwd() project_path depot_path + server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path) + server.runlinter = true + run(server) + ]], +} + +---@type vim.lsp.Config +return { + cmd = cmd, + filetypes = { 'julia' }, + root_markers = root_files, + on_attach = function(_, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspJuliaActivateEnv', activate_env, { + desc = 'Activate a Julia environment', + nargs = '?', + complete = 'file', + }) + end, +} diff --git a/.config/nvim/lsp/just.lua b/.config/nvim/lsp/just.lua new file mode 100644 index 0000000..a5db058 --- /dev/null +++ b/.config/nvim/lsp/just.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/terror/just-lsp +--- +--- `just-lsp` is an LSP for just built on top of the tree-sitter-just parser. + +---@type vim.lsp.Config +return { + cmd = { 'just-lsp' }, + filetypes = { 'just' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/kcl.lua b/.config/nvim/lsp/kcl.lua new file mode 100644 index 0000000..08041fc --- /dev/null +++ b/.config/nvim/lsp/kcl.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/kcl-lang/kcl.nvim +--- +--- Language server for the KCL configuration and policy language. +--- + +---@type vim.lsp.Config +return { + cmd = { 'kcl-language-server' }, + filetypes = { 'kcl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/koka.lua b/.config/nvim/lsp/koka.lua new file mode 100644 index 0000000..c5a3df3 --- /dev/null +++ b/.config/nvim/lsp/koka.lua @@ -0,0 +1,11 @@ +---@brief +--- +--- https://koka-lang.github.io/koka/doc/index.html +--- Koka is a functional programming language with effect types and handlers. + +---@type vim.lsp.Config +return { + cmd = { 'koka', '--language-server', '--lsstdio' }, + filetypes = { 'koka' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/kotlin_language_server.lua b/.config/nvim/lsp/kotlin_language_server.lua new file mode 100644 index 0000000..b5446e2 --- /dev/null +++ b/.config/nvim/lsp/kotlin_language_server.lua @@ -0,0 +1,42 @@ +---@brief +--- +--- A kotlin language server which was developed for internal usage and +--- released afterwards. Maintaining is not done by the original author, +--- but by fwcd. +--- +--- It is built via gradle and developed on github. +--- Source and additional description: +--- https://github.com/fwcd/kotlin-language-server +--- +--- This server requires vim to be aware of the kotlin-filetype. +--- You could refer for this capability to: +--- https://github.com/udalov/kotlin-vim (recommended) +--- Note that there is no LICENSE specified yet. +--- +--- For faster startup, you can setup caching by specifying a storagePath +--- in the init_options. The default is your home directory. + +--- The presence of one of these files indicates a project root directory +-- +-- These are configuration files for the various build systems supported by +-- Kotlin. I am not sure whether the language server supports Ant projects, +-- but I'm keeping it here as well since Ant does support Kotlin. +local root_files = { + 'settings.gradle', -- Gradle (multi-project) + 'settings.gradle.kts', -- Gradle (multi-project) + 'build.xml', -- Ant + 'pom.xml', -- Maven + 'build.gradle', -- Gradle + 'build.gradle.kts', -- Gradle +} + +---@type vim.lsp.Config +return { + filetypes = { 'kotlin' }, + root_markers = root_files, + cmd = { 'kotlin-language-server' }, + init_options = { + -- Enables caching and use project root to store cache data. + storagePath = vim.fs.root(vim.fn.expand '%:p:h', root_files), + }, +} diff --git a/.config/nvim/lsp/kotlin_lsp.lua b/.config/nvim/lsp/kotlin_lsp.lua new file mode 100644 index 0000000..cd9e772 --- /dev/null +++ b/.config/nvim/lsp/kotlin_lsp.lua @@ -0,0 +1,23 @@ +---@brief +---Pre-alpha official Kotlin support for Visual Studio Code and an implementation of Language Server Protocol for the Kotlin language. +--- +---The server is based on IntelliJ IDEA and the IntelliJ IDEA Kotlin Plugin implementation. + +--- The presence of one of these files indicates a project root directory +-- +-- These are configuration files for the various build systems supported by +-- Kotlin. + +---@type vim.lsp.Config +return { + filetypes = { 'kotlin' }, + cmd = { 'kotlin-lsp', '--stdio' }, + root_markers = { + 'settings.gradle', -- Gradle (multi-project) + 'settings.gradle.kts', -- Gradle (multi-project) + 'pom.xml', -- Maven + 'build.gradle', -- Gradle + 'build.gradle.kts', -- Gradle + 'workspace.json', -- Used to integrate your own build system + }, +} diff --git a/.config/nvim/lsp/kulala_ls.lua b/.config/nvim/lsp/kulala_ls.lua new file mode 100644 index 0000000..e56a2cf --- /dev/null +++ b/.config/nvim/lsp/kulala_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/mistweaverco/kulala-ls +--- +--- A minimal language server for HTTP syntax. + +---@type vim.lsp.Config +return { + cmd = { 'kulala-ls', '--stdio' }, + filetypes = { 'http' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/laravel_ls.lua b/.config/nvim/lsp/laravel_ls.lua new file mode 100644 index 0000000..59d986f --- /dev/null +++ b/.config/nvim/lsp/laravel_ls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/laravel-ls/laravel-ls +--- +--- `laravel-ls`, language server for laravel +--- +--- The default `cmd` assumes that the `laravel-ls` binary can be found in `$PATH`. + +---@type vim.lsp.Config +return { + cmd = { 'laravel-ls' }, + filetypes = { 'php', 'blade' }, + root_markers = { 'artisan' }, +} diff --git a/.config/nvim/lsp/lean3ls.lua b/.config/nvim/lsp/lean3ls.lua new file mode 100644 index 0000000..aefbbe9 --- /dev/null +++ b/.config/nvim/lsp/lean3ls.lua @@ -0,0 +1,40 @@ +---@brief +--- +--- https://github.com/leanprover/lean-client-js/tree/master/lean-language-server +--- +--- Lean installation instructions can be found +--- [here](https://leanprover-community.github.io/get_started.html#regular-install). +--- +--- Once Lean is installed, you can install the Lean 3 language server by running +--- ```sh +--- npm install -g lean-language-server +--- ``` +--- +--- Note: that if you're using [lean.nvim](https://github.com/Julian/lean.nvim), +--- that plugin fully handles the setup of the Lean language server, +--- and you shouldn't set up `lean3ls` both with it and `lspconfig`. + +---@type vim.lsp.Config +return { + cmd = { 'lean-language-server', '--stdio', '--', '-M', '4096', '-T', '100000' }, + filetypes = { 'lean3' }, + offset_encoding = 'utf-32', + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + fname = vim.fs.normalize(fname) + -- check if inside elan stdlib + local stdlib_dir + do + local _, endpos = fname:find '/lean/library' + if endpos then + stdlib_dir = fname:sub(1, endpos) + end + end + + on_dir( + vim.fs.root(fname, { 'leanpkg.toml', 'leanpkg.path' }) + or stdlib_dir + or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) + ) + end, +} diff --git a/.config/nvim/lsp/leanls.lua b/.config/nvim/lsp/leanls.lua new file mode 100644 index 0000000..e5c03fd --- /dev/null +++ b/.config/nvim/lsp/leanls.lua @@ -0,0 +1,45 @@ +---@brief +--- https://github.com/leanprover/lean4 +--- +--- Lean installation instructions can be found +--- [here](https://leanprover-community.github.io/get_started.html#regular-install). +--- +--- The Lean language server is included in any Lean installation and +--- does not require any additional packages. +--- +--- Note: that if you're using [lean.nvim](https://github.com/Julian/lean.nvim), +--- that plugin fully handles the setup of the Lean language server, +--- and you shouldn't set up `leanls` both with it and `lspconfig`. + +---@type vim.lsp.Config +return { + cmd = function(dispatchers, config) + local local_cmd = { 'lake', 'serve', '--', config.root_dir } + return vim.lsp.rpc.start(local_cmd, dispatchers) + end, + filetypes = { 'lean' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + fname = vim.fs.normalize(fname) + -- check if inside lean stdlib + local stdlib_dir + do + local _, endpos = fname:find '/lean/library' + if endpos then + stdlib_dir = fname:sub(1, endpos) + end + end + if not stdlib_dir then + local _, endpos = fname:find '/lib/lean' + if endpos then + stdlib_dir = fname:sub(1, endpos) + end + end + + on_dir( + vim.fs.root(fname, { 'lakefile.toml', 'lakefile.lean', 'lean-toolchain' }) + or stdlib_dir + or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) + ) + end, +} diff --git a/.config/nvim/lsp/lelwel_ls.lua b/.config/nvim/lsp/lelwel_ls.lua new file mode 100644 index 0000000..0b04eb1 --- /dev/null +++ b/.config/nvim/lsp/lelwel_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/0x2a-42/lelwel +--- +--- Language server for lelwel grammars. +--- +--- You can install `lelwel-ls` via cargo: +--- ```sh +--- cargo install --features="lsp" lelwel +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'lelwel-ls' }, + filetypes = { 'llw' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/lemminx.lua b/.config/nvim/lsp/lemminx.lua new file mode 100644 index 0000000..4aac3a8 --- /dev/null +++ b/.config/nvim/lsp/lemminx.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/eclipse/lemminx +--- +--- The easiest way to install the server is to get a binary from https://github.com/redhat-developer/vscode-xml/releases and place it on your PATH. +--- +--- NOTE to macOS users: Binaries from unidentified developers are blocked by default. If you trust the downloaded binary, run it once, cancel the prompt, then remove the binary from Gatekeeper quarantine with `xattr -d com.apple.quarantine lemminx`. It should now run without being blocked. + +---@type vim.lsp.Config +return { + cmd = { 'lemminx' }, + filetypes = { 'xml', 'xsd', 'xsl', 'xslt', 'svg' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/lexical.lua b/.config/nvim/lsp/lexical.lua new file mode 100644 index 0000000..ee6d595 --- /dev/null +++ b/.config/nvim/lsp/lexical.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/lexical-lsp/lexical +--- +--- Lexical is a next-generation language server for the Elixir programming language. +--- +--- Follow the [Detailed Installation Instructions](https://github.com/lexical-lsp/lexical/blob/main/pages/installation.md) +--- +--- **By default, `lexical` doesn't have a `cmd` set.** +--- This is because nvim-lspconfig does not make assumptions about your path. + +---@type vim.lsp.Config +return { + filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, + root_markers = { 'mix.exs', '.git' }, +} diff --git a/.config/nvim/lsp/lsp_ai.lua b/.config/nvim/lsp/lsp_ai.lua new file mode 100644 index 0000000..ef853e2 --- /dev/null +++ b/.config/nvim/lsp/lsp_ai.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/SilasMarvin/lsp-ai +--- +--- LSP-AI is an open source language server that serves as a backend for AI-powered functionality in your favorite code +--- editors. It offers features like in-editor chatting with LLMs and code completions. +--- +--- +--- You will need to provide configuration for the inference backends and models you want to use, as well as configure +--- completion/code actions. See the [wiki docs](https://github.com/SilasMarvin/lsp-ai/wiki/Configuration) and +--- [examples](https://github.com/SilasMarvin/lsp-ai/blob/main/examples/nvim) for more information. + +---@type vim.lsp.Config +return { + cmd = { 'lsp-ai' }, + filetypes = {}, + root_dir = nil, + init_options = { + memory = { + file_store = vim.empty_dict(), + }, + models = vim.empty_dict(), + }, +} diff --git a/.config/nvim/lsp/ltex.lua b/.config/nvim/lsp/ltex.lua new file mode 100644 index 0000000..9b3bb24 --- /dev/null +++ b/.config/nvim/lsp/ltex.lua @@ -0,0 +1,85 @@ +---@brief +--- +--- https://github.com/valentjn/ltex-ls +--- +--- LTeX Language Server: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others +--- +--- To install, download the latest [release](https://github.com/valentjn/ltex-ls/releases) and ensure `ltex-ls` is on your path. +--- +--- This server accepts configuration via the `settings` key. +--- +--- ```lua +--- settings = { +--- ltex = { +--- language = "en-GB", +--- }, +--- }, +--- ``` +--- +--- To support org files or R sweave, users can define a custom filetype autocommand (or use a plugin which defines these filetypes): +--- +--- ```lua +--- vim.cmd [[ autocmd BufRead,BufNewFile *.org set filetype=org ]] +--- ``` + +local language_id_mapping = { + bib = 'bibtex', + plaintex = 'tex', + rnoweb = 'rsweave', + rst = 'restructuredtext', + tex = 'latex', + pandoc = 'markdown', + text = 'plaintext', +} + +local filetypes = { + 'bib', + 'gitcommit', + 'markdown', + 'org', + 'plaintex', + 'rst', + 'rnoweb', + 'tex', + 'pandoc', + 'quarto', + 'rmd', + 'context', + 'html', + 'xhtml', + 'mail', + 'text', +} + +local function get_language_id(_, filetype) + local language_id = language_id_mapping[filetype] + if language_id then + return language_id + else + return filetype + end +end +local enabled_ids = {} +do + local enabled_keys = {} + for _, ft in ipairs(filetypes) do + local id = get_language_id({}, ft) + if not enabled_keys[id] then + enabled_keys[id] = true + table.insert(enabled_ids, id) + end + end +end + +---@type vim.lsp.Config +return { + cmd = { 'ltex-ls' }, + filetypes = filetypes, + root_markers = { '.git' }, + get_language_id = get_language_id, + settings = { + ltex = { + enabled = enabled_ids, + }, + }, +} diff --git a/.config/nvim/lsp/ltex_plus.lua b/.config/nvim/lsp/ltex_plus.lua new file mode 100644 index 0000000..c241cb7 --- /dev/null +++ b/.config/nvim/lsp/ltex_plus.lua @@ -0,0 +1,87 @@ +---@brief +--- +--- https://github.com/ltex-plus/ltex-ls-plus +--- +--- LTeX Language Server: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others +--- +--- To install, download the latest [release](https://github.com/ltex-plus/ltex-ls-plus) and ensure `ltex-ls-plus` is on your path. +--- +--- This server accepts configuration via the `settings` key. +--- +--- ```lua +--- settings = { +--- ltex = { +--- language = "en-GB", +--- }, +--- }, +--- ``` +--- +--- To support org files or R sweave, users can define a custom filetype autocommand (or use a plugin which defines these filetypes): +--- +--- ```lua +--- vim.cmd [[ autocmd BufRead,BufNewFile *.org set filetype=org ]] +--- ``` + +local language_id_mapping = { + bib = 'bibtex', + pandoc = 'markdown', + plaintex = 'tex', + rnoweb = 'rsweave', + rst = 'restructuredtext', + tex = 'latex', + text = 'plaintext', +} + +---@type vim.lsp.Config +return { + cmd = { 'ltex-ls-plus' }, + filetypes = { + 'bib', + 'context', + 'gitcommit', + 'html', + 'markdown', + 'org', + 'pandoc', + 'plaintex', + 'quarto', + 'mail', + 'mdx', + 'rmd', + 'rnoweb', + 'rst', + 'tex', + 'text', + 'typst', + 'xhtml', + }, + root_markers = { '.git' }, + get_language_id = function(_, filetype) + return language_id_mapping[filetype] or filetype + end, + settings = { + ltex = { + enabled = { + 'bib', + 'context', + 'gitcommit', + 'html', + 'markdown', + 'org', + 'pandoc', + 'plaintex', + 'quarto', + 'mail', + 'mdx', + 'rmd', + 'rnoweb', + 'rst', + 'tex', + 'latex', + 'text', + 'typst', + 'xhtml', + }, + }, + }, +} diff --git a/.config/nvim/lsp/lua_ls.lua b/.config/nvim/lsp/lua_ls.lua new file mode 100644 index 0000000..c8a46c1 --- /dev/null +++ b/.config/nvim/lsp/lua_ls.lua @@ -0,0 +1,92 @@ +---@brief +--- +--- https://github.com/luals/lua-language-server +--- +--- Lua language server. +--- +--- `lua-language-server` can be installed by following the instructions [here](https://luals.github.io/#neovim-install). +--- +--- The default `cmd` assumes that the `lua-language-server` binary can be found in `$PATH`. +--- +--- If you primarily use `lua-language-server` for Neovim, and want to provide completions, +--- analysis, and location handling for plugins on runtime path, you can use the following +--- settings. +--- +--- ```lua +--- vim.lsp.config('lua_ls', { +--- on_init = function(client) +--- if client.workspace_folders then +--- local path = client.workspace_folders[1].name +--- if +--- path ~= vim.fn.stdpath('config') +--- and (vim.uv.fs_stat(path .. '/.luarc.json') or vim.uv.fs_stat(path .. '/.luarc.jsonc')) +--- then +--- return +--- end +--- end +--- +--- client.config.settings.Lua = vim.tbl_deep_extend('force', client.config.settings.Lua, { +--- runtime = { +--- -- Tell the language server which version of Lua you're using (most +--- -- likely LuaJIT in the case of Neovim) +--- version = 'LuaJIT', +--- -- Tell the language server how to find Lua modules same way as Neovim +--- -- (see `:h lua-module-load`) +--- path = { +--- 'lua/?.lua', +--- 'lua/?/init.lua', +--- }, +--- }, +--- -- Make the server aware of Neovim runtime files +--- workspace = { +--- checkThirdParty = false, +--- library = { +--- vim.env.VIMRUNTIME +--- -- Depending on the usage, you might want to add additional paths +--- -- here. +--- -- '${3rd}/luv/library' +--- -- '${3rd}/busted/library' +--- } +--- -- Or pull in all of 'runtimepath'. +--- -- NOTE: this is a lot slower and will cause issues when working on +--- -- your own configuration. +--- -- See https://github.com/neovim/nvim-lspconfig/issues/3189 +--- -- library = { +--- -- vim.api.nvim_get_runtime_file('', true), +--- -- } +--- } +--- }) +--- end, +--- settings = { +--- Lua = {} +--- } +--- }) +--- ``` +--- +--- See `lua-language-server`'s [documentation](https://luals.github.io/wiki/settings/) for an explanation of the above fields: +--- * [Lua.runtime.path](https://luals.github.io/wiki/settings/#runtimepath) +--- * [Lua.workspace.library](https://luals.github.io/wiki/settings/#workspacelibrary) +--- + +---@type vim.lsp.Config +return { + cmd = { 'lua-language-server' }, + filetypes = { 'lua' }, + root_markers = { + '.luarc.json', + '.luarc.jsonc', + '.luacheckrc', + '.stylua.toml', + 'stylua.toml', + 'selene.toml', + 'selene.yml', + '.git', + }, + settings = { + Lua = { + workspace = { + library = vim.api.nvim_get_runtime_file("", true), + } + } + } +} diff --git a/.config/nvim/lsp/luau_lsp.lua b/.config/nvim/lsp/luau_lsp.lua new file mode 100644 index 0000000..8686501 --- /dev/null +++ b/.config/nvim/lsp/luau_lsp.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://github.com/JohnnyMorganz/luau-lsp +--- +--- Language server for the [Luau](https://luau-lang.org/) language. +--- +--- `luau-lsp` can be installed by downloading one of the release assets available at https://github.com/JohnnyMorganz/luau-lsp. +--- +--- You might also have to set up automatic filetype detection for Luau files, for example like so: +--- +--- ```vim +--- autocmd BufRead,BufNewFile *.luau setf luau +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'luau-lsp', 'lsp' }, + filetypes = { 'luau' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/lwc_ls.lua b/.config/nvim/lsp/lwc_ls.lua new file mode 100644 index 0000000..2e4ded3 --- /dev/null +++ b/.config/nvim/lsp/lwc_ls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/forcedotcom/lightning-language-server/ +--- +--- Language server for Lightning Web Components. +--- +--- For manual installation, utilize the official [NPM package](https://www.npmjs.com/package/@salesforce/lwc-language-server). +--- Then, configure `cmd` to run the Node script at the unpacked location: +--- +--- ```lua +--- vim.lsp.config('lwc_ls', { +--- cmd = { +--- 'node', +--- '/path/to/node_modules/@salesforce/lwc-language-server/bin/lwc-language-server.js', +--- '--stdio' +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'lwc-language-server', '--stdio' }, + filetypes = { 'javascript', 'html' }, + root_markers = { 'sfdx-project.json' }, + init_options = { + embeddedLanguages = { + javascript = true, + }, + }, +} diff --git a/.config/nvim/lsp/m68k.lua b/.config/nvim/lsp/m68k.lua new file mode 100644 index 0000000..e54559a --- /dev/null +++ b/.config/nvim/lsp/m68k.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/grahambates/m68k-lsp +--- +--- Language server for Motorola 68000 family assembly +--- +--- `m68k-lsp-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g m68k-lsp-server +--- ``` +--- +--- Ensure you are using the 68k asm syntax variant in Neovim. +--- +--- ```lua +--- vim.g.asmsyntax = 'asm68k' +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'm68k-lsp-server', '--stdio' }, + filetypes = { 'asm68k' }, + root_markers = { 'Makefile', '.git' }, +} diff --git a/.config/nvim/lsp/markdown_oxide.lua b/.config/nvim/lsp/markdown_oxide.lua new file mode 100644 index 0000000..cb61d23 --- /dev/null +++ b/.config/nvim/lsp/markdown_oxide.lua @@ -0,0 +1,37 @@ +---@brief +--- +--- https://github.com/Feel-ix-343/markdown-oxide +--- +--- Editor Agnostic PKM: you bring the text editor and we +--- bring the PKM. +--- +--- Inspired by and compatible with Obsidian. +--- +--- Check the readme to see how to properly setup. + +---@param client vim.lsp.Client +---@param bufnr integer +---@param cmd string +local function command_factory(client, bufnr, cmd) + return client:exec_cmd({ + title = ('Markdown-Oxide-%s'):format(cmd), + command = 'jump', + arguments = { cmd }, + }, { bufnr = bufnr }) +end + +---@type vim.lsp.Config +return { + root_markers = { '.git', '.obsidian', '.moxide.toml' }, + filetypes = { 'markdown' }, + cmd = { 'markdown-oxide' }, + on_attach = function(client, bufnr) + for _, cmd in ipairs({ 'today', 'tomorrow', 'yesterday' }) do + vim.api.nvim_buf_create_user_command(bufnr, 'Lsp' .. ('%s'):format(cmd:gsub('^%l', string.upper)), function() + command_factory(client, bufnr, cmd) + end, { + desc = ('Open %s daily note'):format(cmd), + }) + end + end, +} diff --git a/.config/nvim/lsp/marko-js.lua b/.config/nvim/lsp/marko-js.lua new file mode 100644 index 0000000..fba69bd --- /dev/null +++ b/.config/nvim/lsp/marko-js.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/marko-js/language-server +--- +--- Using the Language Server Protocol to improve Marko's developer experience. +--- +--- Can be installed via npm: +--- ``` +--- npm i -g @marko/language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'marko-language-server', '--stdio' }, + filetypes = { 'marko' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/marksman.lua b/.config/nvim/lsp/marksman.lua new file mode 100644 index 0000000..fc1e048 --- /dev/null +++ b/.config/nvim/lsp/marksman.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/artempyanykh/marksman +--- +--- Marksman is a Markdown LSP server providing completion, cross-references, diagnostics, and more. +--- +--- Marksman works on MacOS, Linux, and Windows and is distributed as a self-contained binary for each OS. +--- +--- Pre-built binaries can be downloaded from https://github.com/artempyanykh/marksman/releases + +---@type vim.lsp.Config +return { + cmd = { 'marksman', 'server' }, + filetypes = { 'markdown', 'markdown.mdx' }, + root_markers = { '.marksman.toml', '.git' }, +} diff --git a/.config/nvim/lsp/matlab_ls.lua b/.config/nvim/lsp/matlab_ls.lua new file mode 100644 index 0000000..6da14a0 --- /dev/null +++ b/.config/nvim/lsp/matlab_ls.lua @@ -0,0 +1,34 @@ +---@brief +--- +--- https://github.com/mathworks/MATLAB-language-server +--- +--- MATLAB® language server implements the Microsoft® Language Server Protocol for the MATLAB language. +--- +--- Make sure to set `MATLAB.installPath` to your MATLAB path, e.g.: +--- ```lua +--- settings = { +--- MATLAB = { +--- ... +--- installPath = '/usr/local/MATLAB/R2023a', +--- ... +--- }, +--- }, +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'matlab-language-server', '--stdio' }, + filetypes = { 'matlab' }, + root_dir = function(bufnr, on_dir) + local root_dir = vim.fs.root(bufnr, '.git') + on_dir(root_dir or vim.fn.getcwd()) + end, + settings = { + MATLAB = { + indexWorkspace = true, + installPath = '', -- NOTE: Set this to your MATLAB installation path. + matlabConnectionTiming = 'onStart', + telemetry = true, + }, + }, +} diff --git a/.config/nvim/lsp/mdx_analyzer.lua b/.config/nvim/lsp/mdx_analyzer.lua new file mode 100644 index 0000000..3ff8136 --- /dev/null +++ b/.config/nvim/lsp/mdx_analyzer.lua @@ -0,0 +1,22 @@ +---@brief +--- https://github.com/mdx-js/mdx-analyzer +--- +--- `mdx-analyzer`, a language server for MDX + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'mdx-language-server', '--stdio' }, + filetypes = { 'mdx' }, + root_markers = { 'package.json' }, + settings = {}, + init_options = { + typescript = {}, + }, + before_init = function(_, config) + if config.init_options and config.init_options.typescript and not config.init_options.typescript.tsdk then + config.init_options.typescript.tsdk = util.get_typescript_server_path(config.root_dir) + end + end, +} diff --git a/.config/nvim/lsp/mesonlsp.lua b/.config/nvim/lsp/mesonlsp.lua new file mode 100644 index 0000000..dc10550 --- /dev/null +++ b/.config/nvim/lsp/mesonlsp.lua @@ -0,0 +1,38 @@ +---@brief +--- +--- https://github.com/JCWasmx86/mesonlsp +--- +--- An unofficial, unendorsed language server for meson written in C++ + +---Checks if a given path contains a valid Meson project root file +---Looks for 'meson.build' file which contains 'project()' function +local meson_matcher = function(_, path) + local pattern = 'meson.build' + local f = vim.fn.glob(table.concat({ path, pattern }, '/')) + if f == '' then + return false + end + for line in io.lines(f) do + -- skip meson comments + if not line:match '^%s*#.*' then + local str = line:gsub('%s+', '') + if str ~= '' then + if str:match '^project%(' then + return true + else + break + end + end + end + end + return false +end + +---@type vim.lsp.Config +return { + cmd = { 'mesonlsp', '--lsp' }, + filetypes = { 'meson' }, + root_dir = function(bufnr, on_dir) + on_dir(vim.fs.root(bufnr, meson_matcher) or vim.fs.root(bufnr, '.git')) + end, +} diff --git a/.config/nvim/lsp/metals.lua b/.config/nvim/lsp/metals.lua new file mode 100644 index 0000000..c76ce64 --- /dev/null +++ b/.config/nvim/lsp/metals.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- https://scalameta.org/metals/ +--- +--- Scala language server with rich IDE features. +--- +--- See full instructions in the Metals documentation: +--- +--- https://scalameta.org/metals/docs/editors/vim#using-an-alternative-lsp-client +--- +--- Note: that if you're using [nvim-metals](https://github.com/scalameta/nvim-metals), that plugin fully handles the setup and installation of Metals, and you shouldn't set up Metals both with it and `lspconfig`. +--- +--- To install Metals, make sure to have [coursier](https://get-coursier.io/docs/cli-installation) installed, and once you do you can install the latest Metals with `cs install metals`. + +---@type vim.lsp.Config +return { + cmd = { 'metals' }, + filetypes = { 'scala' }, + root_markers = { 'build.sbt', 'build.sc', 'build.gradle', 'pom.xml' }, + init_options = { + statusBarProvider = 'show-message', + isHttpEnabled = true, + compilerOptions = { + snippetAutoIndent = false, + }, + }, + capabilities = { + workspace = { + configuration = false, + }, + }, +} diff --git a/.config/nvim/lsp/millet.lua b/.config/nvim/lsp/millet.lua new file mode 100644 index 0000000..87207b1 --- /dev/null +++ b/.config/nvim/lsp/millet.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/azdavis/millet +--- +--- Millet, a language server for Standard ML +--- +--- To use with nvim: +--- +--- 1. Install a Rust toolchain: https://rustup.rs +--- 2. Clone the repo +--- 3. Run `cargo build --release --bin millet-ls` +--- 4. Move `target/release/millet-ls` to somewhere on your $PATH as `millet` + +---@type vim.lsp.Config +return { + cmd = { 'millet' }, + filetypes = { 'sml' }, + root_markers = { 'millet.toml' }, +} diff --git a/.config/nvim/lsp/mint.lua b/.config/nvim/lsp/mint.lua new file mode 100644 index 0000000..fdcc238 --- /dev/null +++ b/.config/nvim/lsp/mint.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://www.mint-lang.com +--- +--- Install Mint using the [instructions](https://www.mint-lang.com/install). +--- The language server is included since version 0.12.0. + +---@type vim.lsp.Config +return { + cmd = { 'mint', 'ls' }, + filetypes = { 'mint' }, + root_markers = { 'mint.json', '.git' }, +} diff --git a/.config/nvim/lsp/mlir_lsp_server.lua b/.config/nvim/lsp/mlir_lsp_server.lua new file mode 100644 index 0000000..65365f2 --- /dev/null +++ b/.config/nvim/lsp/mlir_lsp_server.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://mlir.llvm.org/docs/Tools/MLIRLSP/#mlir-lsp-language-server--mlir-lsp-server= +--- +--- The Language Server for the LLVM MLIR language +--- +--- `mlir-lsp-server` can be installed at the llvm-project repository (https://github.com/llvm/llvm-project) + +---@type vim.lsp.Config +return { + cmd = { 'mlir-lsp-server' }, + filetypes = { 'mlir' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/mlir_pdll_lsp_server.lua b/.config/nvim/lsp/mlir_pdll_lsp_server.lua new file mode 100644 index 0000000..a3b6d88 --- /dev/null +++ b/.config/nvim/lsp/mlir_pdll_lsp_server.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://mlir.llvm.org/docs/Tools/MLIRLSP/#pdll-lsp-language-server--mlir-pdll-lsp-server +--- +--- The Language Server for the LLVM PDLL language +--- +--- `mlir-pdll-lsp-server` can be installed at the llvm-project repository (https://github.com/llvm/llvm-project) + +---@type vim.lsp.Config +return { + cmd = { 'mlir-pdll-lsp-server' }, + filetypes = { 'pdll' }, + root_markers = { 'pdll_compile_commands.yml', '.git' }, +} diff --git a/.config/nvim/lsp/mm0_ls.lua b/.config/nvim/lsp/mm0_ls.lua new file mode 100644 index 0000000..079a08d --- /dev/null +++ b/.config/nvim/lsp/mm0_ls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/digama0/mm0 +--- +--- Language Server for the metamath-zero theorem prover. +--- +--- Requires [mm0-rs](https://github.com/digama0/mm0/tree/master/mm0-rs) to be installed +--- and available on the `PATH`. + +---@type vim.lsp.Config +return { + cmd = { 'mm0-rs', 'server' }, + root_markers = { '.git' }, + filetypes = { 'metamath-zero' }, +} diff --git a/.config/nvim/lsp/mojo.lua b/.config/nvim/lsp/mojo.lua new file mode 100644 index 0000000..b0a9af9 --- /dev/null +++ b/.config/nvim/lsp/mojo.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/modularml/mojo +--- +--- `mojo-lsp-server` can be installed [via Modular](https://developer.modular.com/download) +--- +--- Mojo is a new programming language that bridges the gap between research and production by combining Python syntax and ecosystem with systems programming and metaprogramming features. + +---@type vim.lsp.Config +return { + cmd = { 'mojo-lsp-server' }, + filetypes = { 'mojo' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/motoko_lsp.lua b/.config/nvim/lsp/motoko_lsp.lua new file mode 100644 index 0000000..f4cd7e4 --- /dev/null +++ b/.config/nvim/lsp/motoko_lsp.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/dfinity/vscode-motoko +--- +--- Language server for the Motoko programming language. + +---@type vim.lsp.Config +return { + cmd = { 'motoko-lsp', '--stdio' }, + filetypes = { 'motoko' }, + root_markers = { 'dfx.json', '.git' }, + init_options = { + formatter = 'auto', + }, +} diff --git a/.config/nvim/lsp/move_analyzer.lua b/.config/nvim/lsp/move_analyzer.lua new file mode 100644 index 0000000..6670882 --- /dev/null +++ b/.config/nvim/lsp/move_analyzer.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://github.com/move-language/move/tree/main/language/move-analyzer +--- +--- Language server for Move +--- +--- The `move-analyzer` can be installed by running: +--- +--- ``` +--- cargo install --git https://github.com/move-language/move move-analyzer +--- ``` +--- +--- See [`move-analyzer`'s doc](https://github.com/move-language/move/blob/1b258a06e3c7d2bc9174578aac92cca3ac19de71/language/move-analyzer/editors/code/README.md#how-to-install) for details. + +---@type vim.lsp.Config +return { + cmd = { 'move-analyzer' }, + filetypes = { 'move' }, + root_markers = { 'Move.toml' }, +} diff --git a/.config/nvim/lsp/msbuild_project_tools_server.lua b/.config/nvim/lsp/msbuild_project_tools_server.lua new file mode 100644 index 0000000..0f85e51 --- /dev/null +++ b/.config/nvim/lsp/msbuild_project_tools_server.lua @@ -0,0 +1,47 @@ +---@brief +--- +--- https://github.com/tintoy/msbuild-project-tools-server/ +--- +--- MSBuild Project Tools Server can be installed by following the README.MD on the above repository. +--- +--- Example config: +--- ```lua +--- vim.lsp.config('msbuild_project_tools_server', { +--- cmd = {'dotnet', '/path/to/server/MSBuildProjectTools.LanguageServer.Host.dll'} +--- }) +--- ``` +--- +--- There's no builtin filetypes for msbuild files, would require some filetype aliases: +--- +--- ```lua +--- vim.filetype.add({ +--- extension = { +--- props = 'msbuild', +--- tasks = 'msbuild', +--- targets = 'msbuild', +--- }, +--- pattern = { +--- [ [[.*\..*proj]] ] = 'msbuild', +--- }, +--- }) +--- ``` +--- +--- Optionally tell treesitter to treat `msbuild` as `xml` so you can get syntax highlighting if you have the treesitter-xml-parser installed. +--- +--- ```lua +--- vim.treesitter.language.register('xml', { 'msbuild' }) +--- ``` + +local host_dll_name = 'MSBuildProjectTools.LanguageServer.Host.dll' +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + filetypes = { 'msbuild' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.sln', '*.slnx', '*.*proj', '.git')(fname)) + end, + init_options = {}, + cmd = { 'dotnet', host_dll_name }, +} diff --git a/.config/nvim/lsp/muon.lua b/.config/nvim/lsp/muon.lua new file mode 100644 index 0000000..160878c --- /dev/null +++ b/.config/nvim/lsp/muon.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://muon.build + +---@type vim.lsp.Config +return { + cmd = { 'muon', 'analyze', 'lsp' }, + filetypes = { 'meson' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local cmd = { 'muon', 'analyze', 'root-for', fname } + vim.system(cmd, { text = true }, function(output) + if output.code == 0 then + if output.stdout then + on_dir(vim.trim(output.stdout)) + return + end + + on_dir(nil) + else + vim.notify(('[muon] cmd failed with code %d: %s\n%s'):format(output.code, cmd, output.stderr)) + end + end) + end, +} diff --git a/.config/nvim/lsp/mutt_ls.lua b/.config/nvim/lsp/mutt_ls.lua new file mode 100644 index 0000000..050b411 --- /dev/null +++ b/.config/nvim/lsp/mutt_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/neomutt/mutt-language-server +--- +--- A language server for (neo)mutt's muttrc. It can be installed via pip. +--- +--- ```sh +--- pip install mutt-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'mutt-language-server' }, + filetypes = { 'muttrc', 'neomuttrc' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/nelua_lsp.lua b/.config/nvim/lsp/nelua_lsp.lua new file mode 100644 index 0000000..e0feff5 --- /dev/null +++ b/.config/nvim/lsp/nelua_lsp.lua @@ -0,0 +1,31 @@ +--- @brief +--- +--- https://github.com/codehz/nelua-lsp +--- +--- nelua-lsp is an experimental nelua language server. +--- +--- You need [nelua.vim](https://github.com/stefanos82/nelua.vim/blob/main/ftdetect/nelua.vim) for nelua files to be recognized or add this to your config: +--- +--- in vimscript: +--- ```vimscript +--- au BufNewFile,BufRead *.nelua setf nelua +--- ``` +--- +--- in lua: +--- ```lua +--- vim.api.nvim_create_autocmd({ "BufNewFile", "BufRead" }, { pattern = { "*.nelua" }, command = "setf nelua"}) +--- ``` +--- +--- **By default, nelua-lsp doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of the unzipped run script or binary. +--- +--- ```lua +--- vim.lsp.config('nelua_lsp', { +--- cmd = { "nelua", "-L", "/path/to/nelua-lsp/", "--script", "/path/to/nelua-lsp/nelua-lsp.lua" }, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + filetypes = { 'nelua' }, + root_markers = { 'Makefile', '.git', '*.nelua' }, +} diff --git a/.config/nvim/lsp/neocmake.lua b/.config/nvim/lsp/neocmake.lua new file mode 100644 index 0000000..cd08efb --- /dev/null +++ b/.config/nvim/lsp/neocmake.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/neocmakelsp/neocmakelsp +--- +--- CMake LSP Implementation +--- +--- Neovim does not currently include built-in snippets. `neocmakelsp` only provides completions when snippet support is enabled. To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup. +--- +--- ```lua +--- --Enable (broadcasting) snippet capability for completion +--- local capabilities = vim.lsp.protocol.make_client_capabilities() +--- capabilities.textDocument.completion.completionItem.snippetSupport = true +--- +--- vim.lsp.config('neocmake', { +--- capabilities = capabilities, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'neocmakelsp', '--stdio' }, + filetypes = { 'cmake' }, + root_markers = { '.git', 'build', 'cmake' }, +} diff --git a/.config/nvim/lsp/nextflow_ls.lua b/.config/nvim/lsp/nextflow_ls.lua new file mode 100644 index 0000000..f263511 --- /dev/null +++ b/.config/nvim/lsp/nextflow_ls.lua @@ -0,0 +1,38 @@ +---@brief +--- +--- https://github.com/nextflow-io/language-server +--- +--- Requirements: +--- - Java 17+ +--- +--- `nextflow_ls` can be installed by following the instructions [here](https://github.com/nextflow-io/language-server#development). +--- +--- If you have installed nextflow language server, you can set the `cmd` custom path as follow: +--- +--- ```lua +--- vim.lsp.config('nextflow_ls', { +--- cmd = { 'java', '-jar', 'nextflow-language-server-all.jar' }, +--- filetypes = { 'nextflow' }, +--- settings = { +--- nextflow = { +--- files = { +--- exclude = { '.git', '.nf-test', 'work' }, +--- }, +--- }, +--- }, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'java', '-jar', 'nextflow-language-server-all.jar' }, + filetypes = { 'nextflow' }, + root_markers = { 'nextflow.config', '.git' }, + settings = { + nextflow = { + files = { + exclude = { '.git', '.nf-test', 'work' }, + }, + }, + }, +} diff --git a/.config/nvim/lsp/nextls.lua b/.config/nvim/lsp/nextls.lua new file mode 100644 index 0000000..26f6001 --- /dev/null +++ b/.config/nvim/lsp/nextls.lua @@ -0,0 +1,11 @@ +---@brief +--- +--- https://github.com/elixir-tools/next-ls +--- +--- **By default, next-ls does not set its `cmd`. Please see the following [detailed instructions](https://www.elixir-tools.dev/docs/next-ls/installation/) for possible installation methods.** + +---@type vim.lsp.Config +return { + filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, + root_markers = { 'mix.exs', '.git' }, +} diff --git a/.config/nvim/lsp/nginx_language_server.lua b/.config/nvim/lsp/nginx_language_server.lua new file mode 100644 index 0000000..4a8c0e8 --- /dev/null +++ b/.config/nvim/lsp/nginx_language_server.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://pypi.org/project/nginx-language-server/ +--- +--- `nginx-language-server` can be installed via pip: +--- +--- ```sh +--- pip install -U nginx-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'nginx-language-server' }, + filetypes = { 'nginx' }, + root_markers = { 'nginx.conf', '.git' }, +} diff --git a/.config/nvim/lsp/nickel_ls.lua b/.config/nvim/lsp/nickel_ls.lua new file mode 100644 index 0000000..74fe33c --- /dev/null +++ b/.config/nvim/lsp/nickel_ls.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- Nickel Language Server +--- +--- https://github.com/tweag/nickel +--- +--- `nls` can be installed with nix, or cargo, from the Nickel repository. +--- ```sh +--- git clone https://github.com/tweag/nickel.git +--- ``` +--- +--- Nix: +--- ```sh +--- cd nickel +--- nix-env -f . -i +--- ``` +--- +--- cargo: +--- ```sh +--- cd nickel/lsp/nls +--- cargo install --path . +--- ``` +--- +--- In order to have lspconfig detect Nickel filetypes (a prerequisite for autostarting a server), +--- install the [Nickel vim plugin](https://github.com/nickel-lang/vim-nickel). + +---@type vim.lsp.Config +return { + cmd = { 'nls' }, + filetypes = { 'ncl', 'nickel' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/nil_ls.lua b/.config/nvim/lsp/nil_ls.lua new file mode 100644 index 0000000..da8ee63 --- /dev/null +++ b/.config/nvim/lsp/nil_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/oxalica/nil +--- +--- A new language server for Nix Expression Language. +--- +--- If you are using Nix with Flakes support, run `nix profile install github:oxalica/nil` to install. +--- Check the repository README for more information. +--- +--- _See an example config at https://github.com/oxalica/nil/blob/main/dev/nvim-lsp.nix._ + +---@type vim.lsp.Config +return { + cmd = { 'nil' }, + filetypes = { 'nix' }, + root_markers = { 'flake.nix', '.git' }, +} diff --git a/.config/nvim/lsp/nim_langserver.lua b/.config/nvim/lsp/nim_langserver.lua new file mode 100644 index 0000000..441ee24 --- /dev/null +++ b/.config/nvim/lsp/nim_langserver.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- https://github.com/nim-lang/langserver +--- +--- +--- `nim-langserver` can be installed via the `nimble` package manager: +--- ```sh +--- nimble install nimlangserver +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'nimlangserver' }, + filetypes = { 'nim' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir( + util.root_pattern '*.nimble'(fname) or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) + ) + end, +} diff --git a/.config/nvim/lsp/nimls.lua b/.config/nvim/lsp/nimls.lua new file mode 100644 index 0000000..ad5b7a0 --- /dev/null +++ b/.config/nvim/lsp/nimls.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- https://github.com/PMunch/nimlsp +--- +--- `nimlsp` can be installed via the `nimble` package manager: +--- +--- ```sh +--- nimble install nimlsp +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'nimlsp' }, + filetypes = { 'nim' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir( + util.root_pattern '*.nimble'(fname) or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) + ) + end, +} diff --git a/.config/nvim/lsp/nixd.lua b/.config/nvim/lsp/nixd.lua new file mode 100644 index 0000000..64ff08e --- /dev/null +++ b/.config/nvim/lsp/nixd.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/nix-community/nixd +--- +--- Nix language server, based on nix libraries. +--- +--- If you are using Nix with Flakes support, run `nix profile install github:nix-community/nixd` to install. +--- Check the repository README for more information. + +---@type vim.lsp.Config +return { + cmd = { 'nixd' }, + filetypes = { 'nix' }, + root_markers = { 'flake.nix', '.git' }, +} diff --git a/.config/nvim/lsp/nomad_lsp.lua b/.config/nvim/lsp/nomad_lsp.lua new file mode 100644 index 0000000..2388683 --- /dev/null +++ b/.config/nvim/lsp/nomad_lsp.lua @@ -0,0 +1,34 @@ +---@brief +--- +--- https://github.com/juliosueiras/nomad-lsp +--- +--- Written in Go, compilation is needed for `nomad_lsp` to be used. Please see the [original repository](https://github.com/juliosuieras/nomad-lsp). +--- +--- Add the executable to your system or vim PATH and it will be set to go. +--- +--- No configuration option is needed unless you choose not to add `nomad-lsp` executable to the PATH. You should know what you are doing if you choose so. +--- +--- ```lua +--- vim.lsp.enable('nomad_lsp') +--- ``` +--- +--- However, a `hcl.nomad` or `nomad` filetype should be defined. +--- +--- Description of your jobs should be written in `.nomad` files for the LSP client to configure the server's `root_dir` configuration option. + +local util = require 'lspconfig.util' +local bin_name = 'nomad-lsp' + +if vim.fn.has 'win32' == 1 then + bin_name = bin_name .. '.exe' +end + +---@type vim.lsp.Config +return { + cmd = { bin_name }, + filetypes = { 'hcl.nomad', 'nomad' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern '*.nomad'(fname)) + end, +} diff --git a/.config/nvim/lsp/ntt.lua b/.config/nvim/lsp/ntt.lua new file mode 100644 index 0000000..6fcbb28 --- /dev/null +++ b/.config/nvim/lsp/ntt.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://github.com/nokia/ntt +--- Installation instructions can be found [here](https://github.com/nokia/ntt#Install). +--- Can be configured by passing a "settings" object to vim.lsp.config('ntt'): +--- ```lua +--- vim.lsp.config('ntt', { +--- settings = { +--- ntt = { +--- } +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ntt', 'langserver' }, + filetypes = { 'ttcn' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/nushell.lua b/.config/nvim/lsp/nushell.lua new file mode 100644 index 0000000..0cd85e7 --- /dev/null +++ b/.config/nvim/lsp/nushell.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/nushell/nushell +--- +--- Nushell built-in language server. + +---@type vim.lsp.Config +return { + cmd = { 'nu', '--lsp' }, + filetypes = { 'nu' }, + root_dir = function(bufnr, on_dir) + on_dir(vim.fs.root(bufnr, { '.git' }) or vim.fs.dirname(vim.api.nvim_buf_get_name(bufnr))) + end, +} diff --git a/.config/nvim/lsp/nxls.lua b/.config/nvim/lsp/nxls.lua new file mode 100644 index 0000000..1fb9755 --- /dev/null +++ b/.config/nvim/lsp/nxls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/nrwl/nx-console/tree/master/apps/nxls +--- +--- nxls, a language server for Nx Workspaces +--- +--- `nxls` can be installed via `npm`: +--- ```sh +--- npm i -g nxls +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'nxls', '--stdio' }, + filetypes = { 'json', 'jsonc' }, + root_markers = { 'nx.json', '.git' }, +} diff --git a/.config/nvim/lsp/ocamllsp.lua b/.config/nvim/lsp/ocamllsp.lua new file mode 100644 index 0000000..d7a2726 --- /dev/null +++ b/.config/nvim/lsp/ocamllsp.lua @@ -0,0 +1,88 @@ +---@brief +--- +--- https://github.com/ocaml/ocaml-lsp +--- +--- `ocaml-lsp` can be installed as described in [installation guide](https://github.com/ocaml/ocaml-lsp#installation). +--- +--- To install the lsp server in a particular opam switch: +--- ```sh +--- opam install ocaml-lsp-server +--- ``` + +-- https://github.com/ocaml/ocaml-lsp/blob/master/ocaml-lsp-server/docs/ocamllsp/switchImplIntf-spec.md +local function switch_impl_intf(bufnr, client) + local method_name = 'ocamllsp/switchImplIntf' + ---@diagnostic disable-next-line:param-type-mismatch + if not client or not client:supports_method(method_name) then + return vim.notify(('method %s is not supported by any servers active on the current buffer'):format(method_name)) + end + local uri = vim.lsp.util.make_given_range_params(nil, nil, bufnr, client.offset_encoding).textDocument.uri + if not uri then + return vim.notify('could not get URI for current buffer') + end + local params = { uri } + ---@diagnostic disable-next-line:param-type-mismatch + client:request(method_name, params, function(err, result) + if err then + error(tostring(err)) + end + if not result or #result == 0 then + vim.notify('corresponding file cannot be determined') + elseif #result == 1 then + vim.cmd.edit(vim.uri_to_fname(result[1])) + else + vim.ui.select( + result, + { prompt = 'Select an implementation/interface:', format_item = vim.uri_to_fname }, + function(choice) + if choice then + vim.cmd.edit(vim.uri_to_fname(choice)) + end + end + ) + end + end, bufnr) +end + +local language_id_of = { + menhir = 'ocaml.menhir', + ocaml = 'ocaml', + ocamlinterface = 'ocaml.interface', + ocamllex = 'ocaml.ocamllex', + reason = 'reason', + dune = 'dune', +} + +local language_id_of_ext = { + mll = language_id_of.ocamllex, + mly = language_id_of.menhir, + mli = language_id_of.ocamlinterface, +} + +local get_language_id = function(bufnr, ftype) + if ftype == 'ocaml' then + local path = vim.api.nvim_buf_get_name(bufnr) + local ext = vim.fn.fnamemodify(path, ':e') + return language_id_of_ext[ext] or language_id_of.ocaml + else + return language_id_of[ftype] + end +end + +local root_markers1 = { 'dune-project', 'dune-workspace' } +local root_markers2 = { '*.opam', 'opam', 'esy.json', 'package.json' } +local root_markers3 = { '.git' } + +---@type vim.lsp.Config +return { + cmd = { 'ocamllsp' }, + filetypes = { 'ocaml', 'menhir', 'ocamlinterface', 'ocamllex', 'reason', 'dune' }, + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers1, root_markers2, root_markers3 } + or vim.list_extend(vim.list_extend(root_markers1, root_markers2), root_markers3), + get_language_id = get_language_id, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspOcamllspSwitchImplIntf', function() + switch_impl_intf(bufnr, client) + end, { desc = 'Switch between implementation/interface' }) + end, +} diff --git a/.config/nvim/lsp/ols.lua b/.config/nvim/lsp/ols.lua new file mode 100644 index 0000000..aad2a5e --- /dev/null +++ b/.config/nvim/lsp/ols.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/DanielGavin/ols +--- +--- `Odin Language Server`. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'ols' }, + filetypes = { 'odin' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('ols.json', '.git', '*.odin')(fname)) + end, +} diff --git a/.config/nvim/lsp/omnisharp.lua b/.config/nvim/lsp/omnisharp.lua new file mode 100644 index 0000000..cfc9ba1 --- /dev/null +++ b/.config/nvim/lsp/omnisharp.lua @@ -0,0 +1,92 @@ +---@brief +--- +--- https://github.com/omnisharp/omnisharp-roslyn +--- OmniSharp server based on Roslyn workspaces +--- +--- `omnisharp-roslyn` can be installed by downloading and extracting a release from [here](https://github.com/OmniSharp/omnisharp-roslyn/releases). +--- OmniSharp can also be built from source by following the instructions [here](https://github.com/omnisharp/omnisharp-roslyn#downloading-omnisharp). +--- +--- OmniSharp requires the [dotnet-sdk](https://dotnet.microsoft.com/download) to be installed. +--- +--- **By default, omnisharp-roslyn doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of the unzipped run script or binary. +--- +--- For `go_to_definition` to work fully, extended `textDocument/definition` handler is needed, for example see [omnisharp-extended-lsp.nvim](https://github.com/Hoffs/omnisharp-extended-lsp.nvim) +--- +--- + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { + vim.fn.executable('OmniSharp') == 1 and 'OmniSharp' or 'omnisharp', + '-z', -- https://github.com/OmniSharp/omnisharp-vscode/pull/4300 + '--hostPID', + tostring(vim.fn.getpid()), + 'DotNet:enablePackageRestore=false', + '--encoding', + 'utf-8', + '--languageserver', + }, + filetypes = { 'cs', 'vb' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir( + util.root_pattern '*.sln'(fname) + or util.root_pattern '*.csproj'(fname) + or util.root_pattern 'omnisharp.json'(fname) + or util.root_pattern 'function.json'(fname) + ) + end, + init_options = {}, + capabilities = { + workspace = { + workspaceFolders = false, -- https://github.com/OmniSharp/omnisharp-roslyn/issues/909 + }, + }, + settings = { + FormattingOptions = { + -- Enables support for reading code style, naming convention and analyzer + -- settings from .editorconfig. + EnableEditorConfigSupport = true, + -- Specifies whether 'using' directives should be grouped and sorted during + -- document formatting. + OrganizeImports = nil, + }, + MsBuild = { + -- If true, MSBuild project system will only load projects for files that + -- were opened in the editor. This setting is useful for big C# codebases + -- and allows for faster initialization of code navigation features only + -- for projects that are relevant to code that is being edited. With this + -- setting enabled OmniSharp may load fewer projects and may thus display + -- incomplete reference lists for symbols. + LoadProjectsOnDemand = nil, + }, + RoslynExtensionsOptions = { + -- Enables support for roslyn analyzers, code fixes and rulesets. + EnableAnalyzersSupport = nil, + -- Enables support for showing unimported types and unimported extension + -- methods in completion lists. When committed, the appropriate using + -- directive will be added at the top of the current file. This option can + -- have a negative impact on initial completion responsiveness, + -- particularly for the first few completion sessions after opening a + -- solution. + EnableImportCompletion = nil, + -- Only run analyzers against open files when 'enableRoslynAnalyzers' is + -- true + AnalyzeOpenDocumentsOnly = nil, + -- Enables the possibility to see the code in external nuget dependencies + EnableDecompilationSupport = nil, + }, + RenameOptions = { + RenameInComments = nil, + RenameOverloads = nil, + RenameInStrings = nil, + }, + Sdk = { + -- Specifies whether to include preview versions of the .NET SDK when + -- determining which version to use for project loading. + IncludePrereleases = true, + }, + }, +} diff --git a/.config/nvim/lsp/opencl_ls.lua b/.config/nvim/lsp/opencl_ls.lua new file mode 100644 index 0000000..53cf67e --- /dev/null +++ b/.config/nvim/lsp/opencl_ls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/Galarius/opencl-language-server +--- +--- Build instructions can be found [here](https://github.com/Galarius/opencl-language-server/blob/main/_dev/build.md). +--- +--- Prebuilt binaries are available for Linux, macOS and Windows [here](https://github.com/Galarius/opencl-language-server/releases). + +---@type vim.lsp.Config +return { + cmd = { 'opencl-language-server' }, + filetypes = { 'opencl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/openscad_ls.lua b/.config/nvim/lsp/openscad_ls.lua new file mode 100644 index 0000000..f0f4e1b --- /dev/null +++ b/.config/nvim/lsp/openscad_ls.lua @@ -0,0 +1,27 @@ +---@brief +--- +--- https://github.com/dzhu/openscad-language-server +--- +--- A Language Server Protocol server for OpenSCAD +--- +--- You can build and install `openscad-language-server` binary with `cargo`: +--- ```sh +--- cargo install openscad-language-server +--- ``` +--- +--- Vim does not have built-in syntax for the `openscad` filetype currently. +--- +--- This can be added via an autocmd: +--- +--- ```lua +--- vim.cmd [[ autocmd BufRead,BufNewFile *.scad set filetype=openscad ]] +--- ``` +--- +--- or by installing a filetype plugin such as https://github.com/sirtaj/vim-openscad + +---@type vim.lsp.Config +return { + cmd = { 'openscad-language-server' }, + filetypes = { 'openscad' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/openscad_lsp.lua b/.config/nvim/lsp/openscad_lsp.lua new file mode 100644 index 0000000..a9b8da0 --- /dev/null +++ b/.config/nvim/lsp/openscad_lsp.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/Leathong/openscad-LSP +--- +--- A Language Server Protocol server for OpenSCAD +--- +--- You can build and install `openscad-lsp` binary with `cargo`: +--- ```sh +--- cargo install openscad-lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'openscad-lsp', '--stdio' }, + filetypes = { 'openscad' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/oxlint.lua b/.config/nvim/lsp/oxlint.lua new file mode 100644 index 0000000..4585a98 --- /dev/null +++ b/.config/nvim/lsp/oxlint.lua @@ -0,0 +1,31 @@ +--- @brief +--- +--- https://github.com/oxc-project/oxc +--- +--- `oxc` is a linter / formatter for JavaScript / Typescript supporting over 500 rules from ESLint and its popular plugins +--- It can be installed via `npm`: +--- +--- ```sh +--- npm i -g oxlint +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'oxc_language_server' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + workspace_required = true, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local root_markers = util.insert_package_json({ '.oxlintrc.json' }, 'oxlint', fname) + on_dir(vim.fs.dirname(vim.fs.find(root_markers, { path = fname, upward = true })[1])) + end, +} diff --git a/.config/nvim/lsp/pact_ls.lua b/.config/nvim/lsp/pact_ls.lua new file mode 100644 index 0000000..bb5c392 --- /dev/null +++ b/.config/nvim/lsp/pact_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/kadena-io/pact-lsp +--- +--- The Pact language server + +---@type vim.lsp.Config +return { + cmd = { 'pact-lsp' }, + filetypes = { 'pact' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/pasls.lua b/.config/nvim/lsp/pasls.lua new file mode 100644 index 0000000..14f9c80 --- /dev/null +++ b/.config/nvim/lsp/pasls.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/genericptr/pascal-language-server +--- +--- An LSP server implementation for Pascal variants that are supported by Free Pascal, including Object Pascal. It uses CodeTools from Lazarus as backend. +--- +--- First set `cmd` to the Pascal lsp binary. +--- +--- Customization options are passed to pasls as environment variables for example in your `.bashrc`: +--- ```bash +--- export FPCDIR='/usr/lib/fpc/src' # FPC source directory (This is the only required option for the server to work). +--- export PP='/usr/lib/fpc/3.2.2/ppcx64' # Path to the Free Pascal compiler executable. +--- export LAZARUSDIR='/usr/lib/lazarus' # Path to the Lazarus sources. +--- export FPCTARGET='' # Target operating system for cross compiling. +--- export FPCTARGETCPU='x86_64' # Target CPU for cross compiling. +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'pasls' }, + filetypes = { 'pascal' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.lpi', '*.lpk', '.git')(fname)) + end, +} diff --git a/.config/nvim/lsp/pbls.lua b/.config/nvim/lsp/pbls.lua new file mode 100644 index 0000000..d6dba22 --- /dev/null +++ b/.config/nvim/lsp/pbls.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://git.sr.ht/~rrc/pbls +--- +--- Prerequisites: Ensure protoc is on your $PATH. +--- +--- `pbls` can be installed via `cargo install`: +--- ```sh +--- cargo install --git https://git.sr.ht/~rrc/pbls +--- ``` +--- +--- pbls is a Language Server for protobuf + +---@type vim.lsp.Config +return { + cmd = { 'pbls' }, + filetypes = { 'proto' }, + root_markers = { '.pbls.toml', '.git' }, +} diff --git a/.config/nvim/lsp/perlls.lua b/.config/nvim/lsp/perlls.lua new file mode 100644 index 0000000..9c664af --- /dev/null +++ b/.config/nvim/lsp/perlls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/richterger/Perl-LanguageServer/tree/master/clients/vscode/perl +--- +--- `Perl-LanguageServer`, a language server for Perl. +--- +--- To use the language server, ensure that you have Perl::LanguageServer installed and perl command is on your path. + +---@type vim.lsp.Config +return { + cmd = { + 'perl', + '-MPerl::LanguageServer', + '-e', + 'Perl::LanguageServer::run', + '--', + '--port 13603', + '--nostdio 0', + }, + settings = { + perl = { + perlCmd = 'perl', + perlInc = ' ', + fileFilter = { '.pm', '.pl' }, + ignoreDirs = '.git', + }, + }, + filetypes = { 'perl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/perlnavigator.lua b/.config/nvim/lsp/perlnavigator.lua new file mode 100644 index 0000000..e33b48e --- /dev/null +++ b/.config/nvim/lsp/perlnavigator.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/bscan/PerlNavigator +--- +--- A Perl language server. It can be installed via npm: +--- +--- ```sh +--- npm i -g perlnavigator-server +--- ``` +--- +--- At minimum, you will need `perl` in your path. If you want to use a non-standard `perl` you will need to set your configuration like so: +--- ```lua +--- settings = { +--- perlnavigator = { +--- perlPath = '/some/odd/location/my-perl' +--- } +--- } +--- ``` +--- +--- The `contributes.configuration.properties` section of `perlnavigator`'s `package.json` has all available configuration settings. All +--- settings have a reasonable default, but, at minimum, you may want to point `perlnavigator` at your `perltidy` and `perlcritic` configurations. + +---@type vim.lsp.Config +return { + cmd = { 'perlnavigator' }, + filetypes = { 'perl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/perlpls.lua b/.config/nvim/lsp/perlpls.lua new file mode 100644 index 0000000..00be114 --- /dev/null +++ b/.config/nvim/lsp/perlpls.lua @@ -0,0 +1,21 @@ +---@brief +--- +--- https://github.com/FractalBoy/perl-language-server +--- https://metacpan.org/pod/PLS +--- +--- `PLS`, another language server for Perl. +--- +--- To use the language server, ensure that you have PLS installed and that it is in your path + +---@type vim.lsp.Config +return { + cmd = { 'pls' }, + settings = { + perl = { + perlcritic = { enabled = false }, + syntax = { enabled = true }, + }, + }, + filetypes = { 'perl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/pest_ls.lua b/.config/nvim/lsp/pest_ls.lua new file mode 100644 index 0000000..6da7f92 --- /dev/null +++ b/.config/nvim/lsp/pest_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/pest-parser/pest-ide-tools +--- +--- Language server for pest grammars. + +---@type vim.lsp.Config +return { + cmd = { 'pest-language-server' }, + filetypes = { 'pest' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/phan.lua b/.config/nvim/lsp/phan.lua new file mode 100644 index 0000000..b9e6ce3 --- /dev/null +++ b/.config/nvim/lsp/phan.lua @@ -0,0 +1,32 @@ +---@brief +--- +--- https://github.com/phan/phan +--- +--- Installation: https://github.com/phan/phan#getting-started + +local cmd = { + 'phan', + '-m', + 'json', + '--no-color', + '--no-progress-bar', + '-x', + '-u', + '-S', + '--language-server-on-stdin', + '--allow-polyfill-parser', +} + +---@type vim.lsp.Config +return { + cmd = cmd, + filetypes = { 'php' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local cwd = assert(vim.uv.cwd()) + local root = vim.fs.root(fname, { 'composer.json', '.git' }) + + -- prefer cwd if root is a descendant + on_dir(root and vim.fs.relpath(cwd, root) and cwd) + end, +} diff --git a/.config/nvim/lsp/phpactor.lua b/.config/nvim/lsp/phpactor.lua new file mode 100644 index 0000000..5832f54 --- /dev/null +++ b/.config/nvim/lsp/phpactor.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/phpactor/phpactor +--- +--- Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation + +---@type vim.lsp.Config +return { + cmd = { 'phpactor', 'language-server' }, + filetypes = { 'php' }, + root_markers = { '.git', 'composer.json', '.phpactor.json', '.phpactor.yml' }, + workspace_required = true, +} diff --git a/.config/nvim/lsp/phptools.lua b/.config/nvim/lsp/phptools.lua new file mode 100644 index 0000000..e20e00a --- /dev/null +++ b/.config/nvim/lsp/phptools.lua @@ -0,0 +1,36 @@ +---@brief +--- +--- https://www.devsense.com/ +--- +--- `devsense-php-ls` can be installed via `npm`: +--- ```sh +--- npm install -g devsense-php-ls +--- ``` +--- +--- ```lua +--- -- See https://www.npmjs.com/package/devsense-php-ls +--- init_options = { +--- } +--- -- See https://docs.devsense.com/vscode/configuration/ +--- settings = { +--- php = { +--- }; +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'devsense-php-ls', '--stdio' }, + filetypes = { 'php' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local cwd = assert(vim.uv.cwd()) + local root = vim.fs.root(fname, { 'composer.json', '.git' }) + + -- prefer cwd if root is a descendant + on_dir(root and vim.fs.relpath(cwd, root) and cwd) + end, + init_options = { + ['0'] = '{}', --optional premium license validation from https://www.devsense.com/purchase/validation + }, +} diff --git a/.config/nvim/lsp/pico8_ls.lua b/.config/nvim/lsp/pico8_ls.lua new file mode 100644 index 0000000..85bb0b2 --- /dev/null +++ b/.config/nvim/lsp/pico8_ls.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://github.com/japhib/pico8-ls +--- +--- Full language support for the PICO-8 dialect of Lua. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'pico8-ls', '--stdio' }, + filetypes = { 'p8' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.p8')(fname)) + end, + settings = {}, +} diff --git a/.config/nvim/lsp/please.lua b/.config/nvim/lsp/please.lua new file mode 100644 index 0000000..1d25c44 --- /dev/null +++ b/.config/nvim/lsp/please.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/thought-machine/please +--- +--- High-performance extensible build system for reproducible multi-language builds. +--- +--- The `plz` binary will automatically install the LSP for you on first run + +---@type vim.lsp.Config +return { + cmd = { 'plz', 'tool', 'lps' }, + filetypes = { 'bzl' }, + root_markers = { '.plzconfig' }, +} diff --git a/.config/nvim/lsp/pli.lua b/.config/nvim/lsp/pli.lua new file mode 100644 index 0000000..e7e72ca --- /dev/null +++ b/.config/nvim/lsp/pli.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- `pli_language_server` is a language server for the PL/I language used on IBM SystemZ mainframes. +--- +--- To learn how to configure the PL/I language server, see the [PL/I Language Support documentation](https://github.com/zowe/zowe-pli-language-support). + +---@type vim.lsp.Config +return { + cmd = { 'pli_language_server' }, + filetypes = { 'pli' }, + root_markers = { '.pliplugin' }, +} diff --git a/.config/nvim/lsp/poryscript_pls.lua b/.config/nvim/lsp/poryscript_pls.lua new file mode 100644 index 0000000..e8e59b0 --- /dev/null +++ b/.config/nvim/lsp/poryscript_pls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/huderlem/poryscript-pls +--- +--- Language server for poryscript (a high level scripting language for GBA-era Pokémon decompilation projects) + +---@type vim.lsp.Config +return { + cmd = { 'poryscript-pls' }, + filetypes = { 'pory' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/postgres_lsp.lua b/.config/nvim/lsp/postgres_lsp.lua new file mode 100644 index 0000000..398123c --- /dev/null +++ b/.config/nvim/lsp/postgres_lsp.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://pgtools.dev +--- +--- A collection of language tools and a Language Server Protocol (LSP) implementation for Postgres, focusing on developer experience and reliable SQL tooling. + +---@type vim.lsp.Config +return { + cmd = { 'postgrestools', 'lsp-proxy' }, + filetypes = { + 'sql', + }, + root_markers = { 'postgrestools.jsonc' }, +} diff --git a/.config/nvim/lsp/powershell_es.lua b/.config/nvim/lsp/powershell_es.lua new file mode 100644 index 0000000..a011d59 --- /dev/null +++ b/.config/nvim/lsp/powershell_es.lua @@ -0,0 +1,56 @@ +--- @brief +--- +--- https://github.com/PowerShell/PowerShellEditorServices +--- +--- Language server for PowerShell. +--- +--- To install, download and extract PowerShellEditorServices.zip +--- from the [releases](https://github.com/PowerShell/PowerShellEditorServices/releases). +--- To configure the language server, set the property `bundle_path` to the root +--- of the extracted PowerShellEditorServices.zip. +--- +--- ```lua +--- vim.lsp.config('powershell_es', { +--- bundle_path = 'c:/w/PowerShellEditorServices', +--- }) +--- ``` +--- +--- By default the language server is started in `pwsh` (PowerShell Core). This can be changed by specifying `shell`. +--- +--- ```lua +--- vim.lsp.config('powershell_es', { +--- bundle_path = 'c:/w/PowerShellEditorServices', +--- shell = 'powershell.exe', +--- }) +--- ``` +--- +--- Note that the execution policy needs to be set to `Unrestricted` for the languageserver run under PowerShell +--- +--- If necessary, specific `cmd` can be defined instead of `bundle_path`. +--- See [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices#standard-input-and-output) +--- to learn more. +--- +--- ```lua +--- vim.lsp.config('powershell_es', { +--- cmd = {'pwsh', '-NoLogo', '-NoProfile', '-Command', "c:/PSES/Start-EditorServices.ps1 ..."}, +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = function(dispatchers) + local temp_path = vim.fn.stdpath('cache') + local bundle_path = vim.lsp.config.powershell_es.bundle_path + + local shell = vim.lsp.config.powershell_es.shell or 'pwsh' + + local command_fmt = + [[& '%s/PowerShellEditorServices/Start-EditorServices.ps1' -BundledModulesPath '%s' -LogPath '%s/powershell_es.log' -SessionDetailsPath '%s/powershell_es.session.json' -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Normal]] + local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path) + local cmd = { shell, '-NoLogo', '-NoProfile', '-Command', command } + + return vim.lsp.rpc.start(cmd, dispatchers) + end, + filetypes = { 'ps1' }, + root_markers = { 'PSScriptAnalyzerSettings.psd1', '.git' }, +} diff --git a/.config/nvim/lsp/prismals.lua b/.config/nvim/lsp/prismals.lua new file mode 100644 index 0000000..ff234da --- /dev/null +++ b/.config/nvim/lsp/prismals.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- Language Server for the Prisma JavaScript and TypeScript ORM +--- +--- `@prisma/language-server` can be installed via npm +--- ```sh +--- npm install -g @prisma/language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'prisma-language-server', '--stdio' }, + filetypes = { 'prisma' }, + settings = { + prisma = { + prismaFmtBinPath = '', + }, + }, + root_markers = { '.git', 'package.json' }, +} diff --git a/.config/nvim/lsp/prolog_ls.lua b/.config/nvim/lsp/prolog_ls.lua new file mode 100644 index 0000000..aa70d8c --- /dev/null +++ b/.config/nvim/lsp/prolog_ls.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://github.com/jamesnvc/lsp_server +--- +--- Language Server Protocol server for SWI-Prolog + +---@type vim.lsp.Config +return { + cmd = { + 'swipl', + '-g', + 'use_module(library(lsp_server)).', + '-g', + 'lsp_server:main', + '-t', + 'halt', + '--', + 'stdio', + }, + filetypes = { 'prolog' }, + root_markers = { 'pack.pl' }, +} diff --git a/.config/nvim/lsp/prosemd_lsp.lua b/.config/nvim/lsp/prosemd_lsp.lua new file mode 100644 index 0000000..32d1d64 --- /dev/null +++ b/.config/nvim/lsp/prosemd_lsp.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/kitten/prosemd-lsp +--- +--- An experimental LSP for Markdown. +--- +--- Please see the manual installation instructions: https://github.com/kitten/prosemd-lsp#manual-installation + +---@type vim.lsp.Config +return { + cmd = { 'prosemd-lsp', '--stdio' }, + filetypes = { 'markdown' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/protols.lua b/.config/nvim/lsp/protols.lua new file mode 100644 index 0000000..87dc084 --- /dev/null +++ b/.config/nvim/lsp/protols.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/coder3101/protols +--- +--- `protols` can be installed via `cargo`: +--- ```sh +--- cargo install protols +--- ``` +--- +--- A Language Server for proto3 files. It uses tree-sitter and runs in single file mode. + +---@type vim.lsp.Config +return { + cmd = { 'protols' }, + filetypes = { 'proto' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/psalm.lua b/.config/nvim/lsp/psalm.lua new file mode 100644 index 0000000..8764981 --- /dev/null +++ b/.config/nvim/lsp/psalm.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/vimeo/psalm +--- +--- Can be installed with composer. +--- ```sh +--- composer global require vimeo/psalm +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'psalm', '--language-server' }, + filetypes = { 'php' }, + root_markers = { 'psalm.xml', 'psalm.xml.dist' }, +} diff --git a/.config/nvim/lsp/pug.lua b/.config/nvim/lsp/pug.lua new file mode 100644 index 0000000..d04f48f --- /dev/null +++ b/.config/nvim/lsp/pug.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/opa-oz/pug-lsp +--- +--- An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org) +--- +--- PugLSP can be installed via `go install github.com/opa-oz/pug-lsp@latest`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases) + +---@type vim.lsp.Config +return { + cmd = { 'pug-lsp' }, + filetypes = { 'pug' }, + root_markers = { 'package.json' }, +} diff --git a/.config/nvim/lsp/puppet.lua b/.config/nvim/lsp/puppet.lua new file mode 100644 index 0000000..85cd93a --- /dev/null +++ b/.config/nvim/lsp/puppet.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- LSP server for Puppet. +--- +--- Installation: +--- +--- - Clone the editor-services repository: +--- https://github.com/puppetlabs/puppet-editor-services +--- +--- - Navigate into that directory and run: `bundle install` +--- +--- - Install the 'puppet-lint' gem: `gem install puppet-lint` +--- +--- - Add that repository to $PATH. +--- +--- - Ensure you can run `puppet-languageserver` from outside the editor-services directory. + +---@type vim.lsp.Config +return { + cmd = { 'puppet-languageserver', '--stdio' }, + filetypes = { 'puppet' }, + root_markers = { + 'manifests', + '.puppet-lint.rc', + 'hiera.yaml', + '.git', + }, +} diff --git a/.config/nvim/lsp/purescriptls.lua b/.config/nvim/lsp/purescriptls.lua new file mode 100644 index 0000000..acbd338 --- /dev/null +++ b/.config/nvim/lsp/purescriptls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/nwolverson/purescript-language-server +--- +--- The `purescript-language-server` can be added to your project and `$PATH` via +--- +--- * JavaScript package manager such as npm, pnpm, Yarn, et al. +--- * Nix under the `nodePackages` and `nodePackages_latest` package sets + +---@type vim.lsp.Config +return { + cmd = { 'purescript-language-server', '--stdio' }, + filetypes = { 'purescript' }, + root_markers = { 'bower.json', 'flake.nix', 'psc-package.json', 'shell.nix', 'spago.dhall', 'spago.yaml' }, +} diff --git a/.config/nvim/lsp/pylsp.lua b/.config/nvim/lsp/pylsp.lua new file mode 100644 index 0000000..a17f767 --- /dev/null +++ b/.config/nvim/lsp/pylsp.lua @@ -0,0 +1,41 @@ +---@brief +--- +--- https://github.com/python-lsp/python-lsp-server +--- +--- A Python 3.6+ implementation of the Language Server Protocol. +--- +--- See the [project's README](https://github.com/python-lsp/python-lsp-server) for installation instructions. +--- +--- Configuration options are documented [here](https://github.com/python-lsp/python-lsp-server/blob/develop/CONFIGURATION.md). +--- In order to configure an option, it must be translated to a nested Lua table and included in the `settings` argument to the `config('pylsp', {})` function. +--- For example, in order to set the `pylsp.plugins.pycodestyle.ignore` option: +--- ```lua +--- vim.lsp.config('pylsp', { +--- settings = { +--- pylsp = { +--- plugins = { +--- pycodestyle = { +--- ignore = {'W391'}, +--- maxLineLength = 100 +--- } +--- } +--- } +--- } +--- }) +--- ``` +--- +--- Note: This is a community fork of `pyls`. + +---@type vim.lsp.Config +return { + cmd = { 'pylsp' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + '.git', + }, +} diff --git a/.config/nvim/lsp/pylyzer.lua b/.config/nvim/lsp/pylyzer.lua new file mode 100644 index 0000000..e0086a6 --- /dev/null +++ b/.config/nvim/lsp/pylyzer.lua @@ -0,0 +1,35 @@ +---@brief +--- +--- https://github.com/mtshiba/pylyzer +--- +--- `pylyzer`, a fast static code analyzer & language server for Python. +--- +--- `pylyzer` requires Erg as dependency, and finds it via `ERG_PATH` environment variable. +--- This config sets `ERG_PATH="~/.erg"`. Set `cmd_env` if you want to change it. +--- To install Erg, simply extract tarball/zip from [Erg releases](https://github.com/erg-lang/erg/releases/latest) +--- to the the path where you want to install it, e.g. `~/.erg`. + +---@type vim.lsp.Config +return { + cmd = { 'pylyzer', '--server' }, + filetypes = { 'python' }, + root_markers = { + 'setup.py', + 'tox.ini', + 'requirements.txt', + 'Pipfile', + 'pyproject.toml', + '.git', + }, + settings = { + python = { + diagnostics = true, + inlayHints = true, + smartCompletion = true, + checkOnType = false, + }, + }, + cmd_env = { + ERG_PATH = vim.env.ERG_PATH or vim.fs.joinpath(vim.uv.os_homedir(), '.erg'), + }, +} diff --git a/.config/nvim/lsp/pyre.lua b/.config/nvim/lsp/pyre.lua new file mode 100644 index 0000000..a25c8e1 --- /dev/null +++ b/.config/nvim/lsp/pyre.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://pyre-check.org/ +--- +--- `pyre` a static type checker for Python 3. +--- +--- `pyre` offers an extremely limited featureset. It currently only supports diagnostics, +--- which are triggered on save. +--- +--- Do not report issues for missing features in `pyre` to `lspconfig`. + +---@type vim.lsp.Config +return { + cmd = { 'pyre', 'persistent' }, + filetypes = { 'python' }, + root_markers = { '.pyre_configuration' }, +} diff --git a/.config/nvim/lsp/pyrefly.lua b/.config/nvim/lsp/pyrefly.lua new file mode 100644 index 0000000..e4758d1 --- /dev/null +++ b/.config/nvim/lsp/pyrefly.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://pyrefly.org/ +--- +---`pyrefly`, a faster Python type checker written in Rust. +-- +-- `pyrefly` is still in development, so please report any errors to +-- our issues page at https://github.com/facebook/pyrefly/issues. + +---@type vim.lsp.Config +return { + cmd = { 'pyrefly', 'lsp' }, + filetypes = { 'python' }, + root_markers = { + 'pyrefly.toml', + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + '.git', + }, + on_exit = function(code, _, _) + vim.notify('Closing Pyrefly LSP exited with code: ' .. code, vim.log.levels.INFO) + end, +} diff --git a/.config/nvim/lsp/pyright.lua b/.config/nvim/lsp/pyright.lua new file mode 100644 index 0000000..edc802e --- /dev/null +++ b/.config/nvim/lsp/pyright.lua @@ -0,0 +1,65 @@ +---@brief +--- +--- https://github.com/microsoft/pyright +--- +--- `pyright`, a static type checker and language server for python + +local function set_python_path(command) + local path = command.args + local clients = vim.lsp.get_clients { + bufnr = vim.api.nvim_get_current_buf(), + name = 'pyright', + } + for _, client in ipairs(clients) do + if client.settings then + client.settings.python = vim.tbl_deep_extend('force', client.settings.python, { pythonPath = path }) + else + client.config.settings = vim.tbl_deep_extend('force', client.config.settings, { python = { pythonPath = path } }) + end + client:notify('workspace/didChangeConfiguration', { settings = nil }) + end +end + +---@type vim.lsp.Config +return { + cmd = { 'pyright-langserver', '--stdio' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + 'pyrightconfig.json', + '.git', + }, + settings = { + python = { + analysis = { + autoSearchPaths = true, + useLibraryCodeForTypes = true, + diagnosticMode = 'openFilesOnly', + }, + }, + }, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightOrganizeImports', function() + local params = { + command = 'pyright.organizeimports', + arguments = { vim.uri_from_bufnr(bufnr) }, + } + + -- Using client.request() directly because "pyright.organizeimports" is private + -- (not advertised via capabilities), which client:exec_cmd() refuses to call. + -- https://github.com/neovim/neovim/blob/c333d64663d3b6e0dd9aa440e433d346af4a3d81/runtime/lua/vim/lsp/client.lua#L1024-L1030 + client.request('workspace/executeCommand', params, nil, bufnr) + end, { + desc = 'Organize Imports', + }) + vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightSetPythonPath', set_python_path, { + desc = 'Reconfigure pyright with the provided python path', + nargs = 1, + complete = 'file', + }) + end, +} diff --git a/.config/nvim/lsp/qmlls.lua b/.config/nvim/lsp/qmlls.lua new file mode 100644 index 0000000..ef5d5c1 --- /dev/null +++ b/.config/nvim/lsp/qmlls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://doc.qt.io/qt-6/qtqml-tooling-qmlls.html +--- +--- > QML Language Server is a tool shipped with Qt that helps you write code in your favorite (LSP-supporting) editor. +--- +--- Source in the [QtDeclarative repository](https://code.qt.io/cgit/qt/qtdeclarative.git/) + +---@type vim.lsp.Config +return { + cmd = { 'qmlls' }, + filetypes = { 'qml', 'qmljs' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/quick_lint_js.lua b/.config/nvim/lsp/quick_lint_js.lua new file mode 100644 index 0000000..d1cf87d --- /dev/null +++ b/.config/nvim/lsp/quick_lint_js.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://quick-lint-js.com/ +--- +--- quick-lint-js finds bugs in JavaScript programs. +--- +--- See installation [instructions](https://quick-lint-js.com/install/) + +---@type vim.lsp.Config +return { + cmd = { 'quick-lint-js', '--lsp-server' }, + filetypes = { 'javascript', 'typescript' }, + root_markers = { 'package.json', 'jsconfig.json', '.git' }, +} diff --git a/.config/nvim/lsp/r_language_server.lua b/.config/nvim/lsp/r_language_server.lua new file mode 100644 index 0000000..d393e37 --- /dev/null +++ b/.config/nvim/lsp/r_language_server.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- [languageserver](https://github.com/REditorSupport/languageserver) is an +--- implementation of the Microsoft's Language Server Protocol for the R +--- language. +--- +--- It is released on CRAN and can be easily installed by +--- +--- ```r +--- install.packages("languageserver") +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'R', '--no-echo', '-e', 'languageserver::run()' }, + filetypes = { 'r', 'rmd', 'quarto' }, + root_dir = function(bufnr, on_dir) + on_dir(vim.fs.root(bufnr, '.git') or vim.uv.os_homedir()) + end, +} diff --git a/.config/nvim/lsp/racket_langserver.lua b/.config/nvim/lsp/racket_langserver.lua new file mode 100644 index 0000000..f7b98ba --- /dev/null +++ b/.config/nvim/lsp/racket_langserver.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- [https://github.com/jeapostrophe/racket-langserver](https://github.com/jeapostrophe/racket-langserver) +--- +--- The Racket language server. This project seeks to use +--- [DrRacket](https://github.com/racket/drracket)'s public API to provide +--- functionality that mimics DrRacket's code tools as closely as possible. +--- +--- Install via `raco`: `raco pkg install racket-langserver` + +---@type vim.lsp.Config +return { + cmd = { 'racket', '--lib', 'racket-langserver' }, + filetypes = { 'racket', 'scheme' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/raku_navigator.lua b/.config/nvim/lsp/raku_navigator.lua new file mode 100644 index 0000000..4ffbe94 --- /dev/null +++ b/.config/nvim/lsp/raku_navigator.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/bscan/RakuNavigator +--- A Raku language server +--- **By default, raku_navigator doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. +--- You have to install the language server manually. +--- Clone the RakuNavigator repo, install based on the [instructions](https://github.com/bscan/raku_Navigator#installation-for-other-editors), +--- and point `cmd` to `server.js` inside the `server/out` directory: +--- ```lua +--- cmd = {'node', '<path_to_repo>/server/out/server.js', '--stdio'} +--- ``` +--- At minimum, you will need `raku` in your path. If you want to use a non-standard `raku` you will need to set your configuration like so: +--- ```lua +--- settings = { +--- raku_navigator = { +--- rakuPath = '/some/odd/location/my-raku' +--- } +--- } +--- ``` +--- The `contributes.configuration.properties` section of `raku_navigator`'s `package.json` has all available configuration settings. All +--- settings have a reasonable default, but, at minimum, you may want to point `raku_navigator` at your `raku_tidy` and `raku_critic` configurations. + +---@type vim.lsp.Config +return { + cmd = {}, + filetypes = { 'raku' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/reason_ls.lua b/.config/nvim/lsp/reason_ls.lua new file mode 100644 index 0000000..c2ac030 --- /dev/null +++ b/.config/nvim/lsp/reason_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- Reason language server +--- +--- You can install reason language server from [reason-language-server](https://github.com/jaredly/reason-language-server) repository. + +---@type vim.lsp.Config +return { + cmd = { 'reason-language-server' }, + filetypes = { 'reason' }, + root_markers = { 'bsconfig.json', '.git' }, +} diff --git a/.config/nvim/lsp/regal.lua b/.config/nvim/lsp/regal.lua new file mode 100644 index 0000000..f55b07e --- /dev/null +++ b/.config/nvim/lsp/regal.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://github.com/StyraInc/regal +--- +--- A linter for Rego, with support for running as an LSP server. +--- +--- `regal` can be installed by running: +--- ```sh +--- go install github.com/StyraInc/regal@latest +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'regal', 'language-server' }, + filetypes = { 'rego' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern '*.rego'(fname) or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])) + end, +} diff --git a/.config/nvim/lsp/regols.lua b/.config/nvim/lsp/regols.lua new file mode 100644 index 0000000..e695f3b --- /dev/null +++ b/.config/nvim/lsp/regols.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://github.com/kitagry/regols +--- +--- OPA Rego language server. +--- +--- `regols` can be installed by running: +--- ```sh +--- go install github.com/kitagry/regols@latest +--- ``` + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'regols' }, + filetypes = { 'rego' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern '*.rego'(fname) or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])) + end, +} diff --git a/.config/nvim/lsp/remark_ls.lua b/.config/nvim/lsp/remark_ls.lua new file mode 100644 index 0000000..97541d9 --- /dev/null +++ b/.config/nvim/lsp/remark_ls.lua @@ -0,0 +1,46 @@ +---@brief +--- +--- https://github.com/remarkjs/remark-language-server +--- +--- `remark-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g remark-language-server +--- ``` +--- +--- `remark-language-server` uses the same +--- [configuration files](https://github.com/remarkjs/remark/tree/main/packages/remark-cli#example-config-files-json-yaml-js) +--- as `remark-cli`. +--- +--- This uses a plugin based system. Each plugin needs to be installed locally using `npm` or `yarn`. +--- +--- For example, given the following `.remarkrc.json`: +--- +--- ```json +--- { +--- "presets": [ +--- "remark-preset-lint-recommended" +--- ] +--- } +--- ``` +--- +--- `remark-preset-lint-recommended` needs to be installed in the local project: +--- +--- ```sh +--- npm install remark-preset-lint-recommended +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'remark-language-server', '--stdio' }, + filetypes = { 'markdown' }, + root_markers = { + '.remarkrc', + '.remarkrc.json', + '.remarkrc.js', + '.remarkrc.cjs', + '.remarkrc.mjs', + '.remarkrc.yml', + '.remarkrc.yaml', + '.remarkignore', + }, +} diff --git a/.config/nvim/lsp/rescriptls.lua b/.config/nvim/lsp/rescriptls.lua new file mode 100644 index 0000000..f099d03 --- /dev/null +++ b/.config/nvim/lsp/rescriptls.lua @@ -0,0 +1,58 @@ +---@brief +--- +--- https://github.com/rescript-lang/rescript-vscode/tree/master/server +--- +--- ReScript Language Server can be installed via npm: +--- ```sh +--- npm install -g @rescript/language-server +--- ``` +--- +--- See [package.json](https://github.com/rescript-lang/rescript-vscode/blob/master/package.json#L139) +--- for init_options supported. +--- +--- For example, in order to disable the `inlayHints` option: +--- ```lua +--- vim.lsp.config('rescriptls', { +--- settings = { +--- rescript = { +--- settings = { +--- inlayHints = { enable = false }, +--- }, +--- }, +--- }) +--- } +--- ``` +--- +--- Detect file changes: While using @rescript/language-server >= 1.63.0 you have to detect file changes by registering the didChangeWatchedFiles hook. +--- ```lua +--- capabilities = { +--- workspace = { +--- didChangeWatchedFiles = { +--- dynamicRegistration = true, +--- }, +--- }, +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'rescript-language-server', '--stdio' }, + filetypes = { 'rescript' }, + root_markers = { 'bsconfig.json', 'rescript.json', '.git' }, + settings = {}, + init_options = { + extensionConfiguration = { + -- buggy, prompts much too often, superseded by incrementalTypechecking, below + askToStartBuild = false, + + allowBuiltInFormatter = true, -- lower latency + incrementalTypechecking = { -- removes the need for external build process + enabled = true, + acrossFiles = true, + }, + cache = { projectConfig = { enabled = true } }, -- speed up latency dramatically + codeLens = true, + inlayHints = { enable = true }, + }, + }, +} diff --git a/.config/nvim/lsp/rls.lua b/.config/nvim/lsp/rls.lua new file mode 100644 index 0000000..3c48254 --- /dev/null +++ b/.config/nvim/lsp/rls.lua @@ -0,0 +1,35 @@ +---@brief +--- +--- https://github.com/rust-lang/rls +--- +--- rls, a language server for Rust +--- +--- See https://github.com/rust-lang/rls#setup to setup rls itself. +--- See https://github.com/rust-lang/rls#configuration for rls-specific settings. +--- All settings listed on the rls configuration section of the readme +--- must be set under settings.rust as follows: +--- +--- ```lua +--- vim.lsp.config('rls', { +--- settings = { +--- rust = { +--- unstable_features = true, +--- build_on_save = false, +--- all_features = true, +--- }, +--- }, +--- }) +--- ``` +--- +--- If you want to use rls for a particular build, eg nightly, set cmd as follows: +--- +--- ```lua +--- cmd = {"rustup", "run", "nightly", "rls"} +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'rls' }, + filetypes = { 'rust' }, + root_markers = { 'Cargo.toml' }, +} diff --git a/.config/nvim/lsp/rnix.lua b/.config/nvim/lsp/rnix.lua new file mode 100644 index 0000000..0260e68 --- /dev/null +++ b/.config/nvim/lsp/rnix.lua @@ -0,0 +1,20 @@ +---@brief +--- +--- https://github.com/nix-community/rnix-lsp +--- +--- A language server for Nix providing basic completion and formatting via nixpkgs-fmt. +--- +--- To install manually, run `cargo install rnix-lsp`. If you are using nix, rnix-lsp is in nixpkgs. +--- +--- This server accepts configuration via the `settings` key. + +---@type vim.lsp.Config +return { + cmd = { 'rnix-lsp' }, + filetypes = { 'nix' }, + root_dir = function(bufnr, on_dir) + on_dir(vim.fs.root(bufnr, '.git') or vim.uv.os_homedir()) + end, + settings = {}, + init_options = {}, +} diff --git a/.config/nvim/lsp/robotcode.lua b/.config/nvim/lsp/robotcode.lua new file mode 100644 index 0000000..a30722e --- /dev/null +++ b/.config/nvim/lsp/robotcode.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://robotcode.io +--- +--- RobotCode - Language Server Protocol implementation for Robot Framework. + +---@type vim.lsp.Config +return { + cmd = { 'robotcode', 'language-server' }, + filetypes = { 'robot', 'resource' }, + root_markers = { 'robot.toml', 'pyproject.toml', 'Pipfile', '.git' }, + get_language_id = function(_, _) + return 'robotframework' + end, +} diff --git a/.config/nvim/lsp/robotframework_ls.lua b/.config/nvim/lsp/robotframework_ls.lua new file mode 100644 index 0000000..53a9f4f --- /dev/null +++ b/.config/nvim/lsp/robotframework_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/robocorp/robotframework-lsp +--- +--- Language Server Protocol implementation for Robot Framework. + +---@type vim.lsp.Config +return { + cmd = { 'robotframework_ls' }, + filetypes = { 'robot' }, + root_markers = { 'robotidy.toml', 'pyproject.toml', 'conda.yaml', 'robot.yaml', '.git' }, +} diff --git a/.config/nvim/lsp/roc_ls.lua b/.config/nvim/lsp/roc_ls.lua new file mode 100644 index 0000000..fd0c00b --- /dev/null +++ b/.config/nvim/lsp/roc_ls.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/roc-lang/roc/tree/main/crates/language_server#roc_language_server +--- +--- The built-in language server for the Roc programming language. +--- [Installation](https://github.com/roc-lang/roc/tree/main/crates/language_server#installing) + +---@type vim.lsp.Config +return { + cmd = { 'roc_language_server' }, + filetypes = { 'roc' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/rome.lua b/.config/nvim/lsp/rome.lua new file mode 100644 index 0000000..d6c787e --- /dev/null +++ b/.config/nvim/lsp/rome.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://rome.tools +--- +--- Language server for the Rome Frontend Toolchain. +--- +--- (Unmaintained, use [Biome](https://biomejs.dev/blog/annoucing-biome) instead.) +--- +--- ```sh +--- npm install [-g] rome +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'rome', 'lsp-proxy' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'json', + 'typescript', + 'typescript.tsx', + 'typescriptreact', + }, + root_markers = { 'package.json', 'node_modules', '.git' }, +} diff --git a/.config/nvim/lsp/roslyn_ls.lua b/.config/nvim/lsp/roslyn_ls.lua new file mode 100644 index 0000000..e332443 --- /dev/null +++ b/.config/nvim/lsp/roslyn_ls.lua @@ -0,0 +1,237 @@ +---@brief +--- +--- https://github.com/dotnet/roslyn +-- +-- To install the server, compile from source or download as nuget package. +-- Go to `https://dev.azure.com/azure-public/vside/_artifacts/feed/vs-impl/NuGet/Microsoft.CodeAnalysis.LanguageServer.<platform>/overview` +-- replace `<platform>` with one of the following `linux-x64`, `osx-x64`, `win-x64`, `neutral` (for more info on the download location see https://github.com/dotnet/roslyn/issues/71474#issuecomment-2177303207). +-- Download and extract it (nuget's are zip files). +-- - if you chose `neutral` nuget version, then you have to change the `cmd` like so: +-- cmd = { +-- 'dotnet', +-- '<my_folder>/Microsoft.CodeAnalysis.LanguageServer.dll', +-- '--logLevel', -- this property is required by the server +-- 'Information', +-- '--extensionLogDirectory', -- this property is required by the server +-- fs.joinpath(uv.os_tmpdir(), 'roslyn_ls/logs'), +-- '--stdio', +-- }, +-- where `<my_folder>` has to be the folder you extracted the nuget package to. +-- - for all other platforms put the extracted folder to neovim's PATH (`vim.env.PATH`) + +local uv = vim.uv +local fs = vim.fs + +local group = vim.api.nvim_create_augroup('lspconfig.roslyn_ls', { clear = true }) + +---@param client vim.lsp.Client +---@param target string +local function on_init_sln(client, target) + vim.notify('Initializing: ' .. target, vim.log.levels.TRACE, { title = 'roslyn_ls' }) + ---@diagnostic disable-next-line: param-type-mismatch + client:notify('solution/open', { + solution = vim.uri_from_fname(target), + }) +end + +---@param client vim.lsp.Client +---@param project_files string[] +local function on_init_project(client, project_files) + vim.notify('Initializing: projects', vim.log.levels.TRACE, { title = 'roslyn_ls' }) + ---@diagnostic disable-next-line: param-type-mismatch + client:notify('project/open', { + projects = vim.tbl_map(function(file) + return vim.uri_from_fname(file) + end, project_files), + }) +end + +---@param client vim.lsp.Client +local function refresh_diagnostics(client) + local buffers = vim.lsp.get_buffers_by_client_id(client.id) + for _, buf in ipairs(buffers) do + if vim.api.nvim_buf_is_loaded(buf) then + client:request( + vim.lsp.protocol.Methods.textDocument_diagnostic, + { textDocument = vim.lsp.util.make_text_document_params(buf) }, + nil, + buf + ) + end + end +end + +local function roslyn_handlers() + return { + ['workspace/projectInitializationComplete'] = function(_, _, ctx) + vim.notify('Roslyn project initialization complete', vim.log.levels.INFO, { title = 'roslyn_ls' }) + local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) + refresh_diagnostics(client) + return vim.NIL + end, + ['workspace/_roslyn_projectNeedsRestore'] = function(_, result, ctx) + local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) + + ---@diagnostic disable-next-line: param-type-mismatch + client:request('workspace/_roslyn_restore', result, function(err, response) + if err then + vim.notify(err.message, vim.log.levels.ERROR, { title = 'roslyn_ls' }) + end + if response then + for _, v in ipairs(response) do + vim.notify(v.message, vim.log.levels.INFO, { title = 'roslyn_ls' }) + end + end + end) + + return vim.NIL + end, + ['razor/provideDynamicFileInfo'] = function(_, _, _) + vim.notify( + 'Razor is not supported.\nPlease use https://github.com/tris203/rzls.nvim', + vim.log.levels.WARN, + { title = 'roslyn_ls' } + ) + return vim.NIL + end, + } +end + +---@type vim.lsp.Config +return { + name = 'roslyn_ls', + offset_encoding = 'utf-8', + cmd = { + 'Microsoft.CodeAnalysis.LanguageServer', + '--logLevel', + 'Information', + '--extensionLogDirectory', + fs.joinpath(uv.os_tmpdir(), 'roslyn_ls/logs'), + '--stdio', + }, + filetypes = { 'cs' }, + handlers = roslyn_handlers(), + + commands = { + ['roslyn.client.completionComplexEdit'] = function(command, ctx) + local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) + local args = command.arguments or {} + local uri, edit = args[1], args[2] + + if uri and edit and edit.newText and edit.range then + local workspace_edit = { + changes = { + [uri.uri] = { + { + range = edit.range, + newText = edit.newText, + }, + }, + }, + } + vim.lsp.util.apply_workspace_edit(workspace_edit, client.offset_encoding) + else + vim.notify('roslyn_ls: completionComplexEdit args not understood: ' .. vim.inspect(args), vim.log.levels.WARN) + end + end, + }, + + root_dir = function(bufnr, cb) + local bufname = vim.api.nvim_buf_get_name(bufnr) + -- don't try to find sln or csproj for files from libraries + -- outside of the project + if not bufname:match('^' .. fs.joinpath('/tmp/MetadataAsSource/')) then + -- try find solutions root first + local root_dir = fs.root(bufnr, function(fname, _) + return fname:match('%.sln[x]?$') ~= nil + end) + + if not root_dir then + -- try find projects root + root_dir = fs.root(bufnr, function(fname, _) + return fname:match('%.csproj$') ~= nil + end) + end + + if root_dir then + cb(root_dir) + end + end + end, + on_init = { + function(client) + local root_dir = client.config.root_dir + + -- try load first solution we find + for entry, type in fs.dir(root_dir) do + if type == 'file' and (vim.endswith(entry, '.sln') or vim.endswith(entry, '.slnx')) then + on_init_sln(client, fs.joinpath(root_dir, entry)) + return + end + end + + -- if no solution is found load project + for entry, type in fs.dir(root_dir) do + if type == 'file' and vim.endswith(entry, '.csproj') then + on_init_project(client, { fs.joinpath(root_dir, entry) }) + end + end + end, + }, + + on_attach = function(client, bufnr) + -- avoid duplicate autocmds for same buffer + if vim.api.nvim_get_autocmds({ buffer = bufnr, group = group })[1] then + return + end + + vim.api.nvim_create_autocmd({ 'BufWritePost', 'InsertLeave' }, { + group = group, + buffer = bufnr, + callback = function() + refresh_diagnostics(client) + end, + desc = 'roslyn_ls: refresh diagnostics', + }) + end, + + capabilities = { + -- HACK: Doesn't show any diagnostics if we do not set this to true + textDocument = { + diagnostic = { + dynamicRegistration = true, + }, + }, + }, + settings = { + ['csharp|background_analysis'] = { + dotnet_analyzer_diagnostics_scope = 'fullSolution', + dotnet_compiler_diagnostics_scope = 'fullSolution', + }, + ['csharp|inlay_hints'] = { + csharp_enable_inlay_hints_for_implicit_object_creation = true, + csharp_enable_inlay_hints_for_implicit_variable_types = true, + csharp_enable_inlay_hints_for_lambda_parameter_types = true, + csharp_enable_inlay_hints_for_types = true, + dotnet_enable_inlay_hints_for_indexer_parameters = true, + dotnet_enable_inlay_hints_for_literal_parameters = true, + dotnet_enable_inlay_hints_for_object_creation_parameters = true, + dotnet_enable_inlay_hints_for_other_parameters = true, + dotnet_enable_inlay_hints_for_parameters = true, + dotnet_suppress_inlay_hints_for_parameters_that_differ_only_by_suffix = true, + dotnet_suppress_inlay_hints_for_parameters_that_match_argument_name = true, + dotnet_suppress_inlay_hints_for_parameters_that_match_method_intent = true, + }, + ['csharp|symbol_search'] = { + dotnet_search_reference_assemblies = true, + }, + ['csharp|completion'] = { + dotnet_show_name_completion_suggestions = true, + dotnet_show_completion_items_from_unimported_namespaces = true, + dotnet_provide_regex_completions = true, + }, + ['csharp|code_lens'] = { + dotnet_enable_references_code_lens = true, + }, + }, +} diff --git a/.config/nvim/lsp/rpmspec.lua b/.config/nvim/lsp/rpmspec.lua new file mode 100644 index 0000000..b953f75 --- /dev/null +++ b/.config/nvim/lsp/rpmspec.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/dcermak/rpm-spec-language-server +--- +--- Language server protocol (LSP) support for RPM Spec files. +--- +--- `rpm-spec-language-server` can be installed by running, +--- +--- ```sh +--- pip install rpm-spec-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'rpm_lsp_server', '--stdio' }, + filetypes = { 'spec' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/rubocop.lua b/.config/nvim/lsp/rubocop.lua new file mode 100644 index 0000000..e24e616 --- /dev/null +++ b/.config/nvim/lsp/rubocop.lua @@ -0,0 +1,10 @@ +---@brief +--- +--- https://github.com/rubocop/rubocop + +---@type vim.lsp.Config +return { + cmd = { 'rubocop', '--lsp' }, + filetypes = { 'ruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/ruby_lsp.lua b/.config/nvim/lsp/ruby_lsp.lua new file mode 100644 index 0000000..87e2f59 --- /dev/null +++ b/.config/nvim/lsp/ruby_lsp.lua @@ -0,0 +1,27 @@ +---@brief +--- +--- https://shopify.github.io/ruby-lsp/ +--- +--- This gem is an implementation of the language server protocol specification for +--- Ruby, used to improve editor features. +--- +--- Install the gem. There's no need to require it, since the server is used as a +--- standalone executable. +--- +--- ```sh +--- gem install ruby-lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ruby-lsp' }, + filetypes = { 'ruby', 'eruby' }, + root_markers = { 'Gemfile', '.git' }, + init_options = { + formatter = 'auto', + }, + reuse_client = function(client, config) + config.cmd_cwd = config.root_dir + return client.config.cmd_cwd == config.cmd_cwd + end, +} diff --git a/.config/nvim/lsp/ruff.lua b/.config/nvim/lsp/ruff.lua new file mode 100644 index 0000000..7fb61ea --- /dev/null +++ b/.config/nvim/lsp/ruff.lua @@ -0,0 +1,35 @@ +---@brief +--- +--- https://github.com/astral-sh/ruff +--- +--- A Language Server Protocol implementation for Ruff, an extremely fast Python linter and code formatter, written in Rust. It can be installed via `pip`. +--- +--- ```sh +--- pip install ruff +--- ``` +--- +--- **Available in Ruff `v0.4.5` in beta and stabilized in Ruff `v0.5.3`.** +--- +--- This is the new built-in language server written in Rust. It supports the same feature set as `ruff-lsp`, but with superior performance and no installation required. Note that the `ruff-lsp` server will continue to be maintained until further notice. +--- +--- Server settings can be provided via: +--- +--- ```lua +--- vim.lsp.config('ruff', { +--- init_options = { +--- settings = { +--- -- Server settings should go here +--- } +--- } +--- }) +--- ``` +--- +--- Refer to the [documentation](https://docs.astral.sh/ruff/editors/) for more details. + +---@type vim.lsp.Config +return { + cmd = { 'ruff', 'server' }, + filetypes = { 'python' }, + root_markers = { 'pyproject.toml', 'ruff.toml', '.ruff.toml', '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/ruff_lsp.lua b/.config/nvim/lsp/ruff_lsp.lua new file mode 100644 index 0000000..59b093e --- /dev/null +++ b/.config/nvim/lsp/ruff_lsp.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/astral-sh/ruff-lsp +--- +--- A Language Server Protocol implementation for Ruff, an extremely fast Python linter and code transformation tool, written in Rust. It can be installed via pip. +--- +--- ```sh +--- pip install ruff-lsp +--- ``` +--- +--- Extra CLI arguments for `ruff` can be provided via +--- +--- ```lua +--- vim.lsp.config('ruff_lsp', { +--- init_options = { +--- settings = { +--- -- Any extra CLI arguments for `ruff` go here. +--- args = {}, +--- } +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ruff-lsp' }, + filetypes = { 'python' }, + root_markers = { 'pyproject.toml', 'ruff.toml', '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/rune_languageserver.lua b/.config/nvim/lsp/rune_languageserver.lua new file mode 100644 index 0000000..d893375 --- /dev/null +++ b/.config/nvim/lsp/rune_languageserver.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://crates.io/crates/rune-languageserver +--- +--- A language server for the [Rune](https://rune-rs.github.io/) Language, +--- an embeddable dynamic programming language for Rust + +---@type vim.lsp.Config +return { + cmd = { 'rune-languageserver' }, + filetypes = { 'rune' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/rust_analyzer.lua b/.config/nvim/lsp/rust_analyzer.lua new file mode 100644 index 0000000..a699c7f --- /dev/null +++ b/.config/nvim/lsp/rust_analyzer.lua @@ -0,0 +1,121 @@ +---@brief +--- +--- https://github.com/rust-lang/rust-analyzer +--- +--- rust-analyzer (aka rls 2.0), a language server for Rust +--- +--- +--- See [docs](https://rust-analyzer.github.io/book/configuration.html) for extra settings. The settings can be used like this: +--- ```lua +--- vim.lsp.config('rust_analyzer', { +--- settings = { +--- ['rust-analyzer'] = { +--- diagnostics = { +--- enable = false; +--- } +--- } +--- } +--- }) +--- ``` +--- +--- Note: do not set `init_options` for this LS config, it will be automatically populated by the contents of settings["rust-analyzer"] per +--- https://github.com/rust-lang/rust-analyzer/blob/eb5da56d839ae0a9e9f50774fa3eb78eb0964550/docs/dev/lsp-extensions.md?plain=1#L26. + +local function reload_workspace(bufnr) + local clients = vim.lsp.get_clients { bufnr = bufnr, name = 'rust_analyzer' } + for _, client in ipairs(clients) do + vim.notify 'Reloading Cargo Workspace' + ---@diagnostic disable-next-line:param-type-mismatch + client:request('rust-analyzer/reloadWorkspace', nil, function(err) + if err then + error(tostring(err)) + end + vim.notify 'Cargo workspace reloaded' + end, 0) + end +end + +local function is_library(fname) + local user_home = vim.fs.normalize(vim.env.HOME) + local cargo_home = os.getenv 'CARGO_HOME' or user_home .. '/.cargo' + local registry = cargo_home .. '/registry/src' + local git_registry = cargo_home .. '/git/checkouts' + + local rustup_home = os.getenv 'RUSTUP_HOME' or user_home .. '/.rustup' + local toolchains = rustup_home .. '/toolchains' + + for _, item in ipairs { toolchains, registry, git_registry } do + if vim.fs.relpath(item, fname) then + local clients = vim.lsp.get_clients { name = 'rust_analyzer' } + return #clients > 0 and clients[#clients].config.root_dir or nil + end + end +end + +---@type vim.lsp.Config +return { + cmd = { 'rust-analyzer' }, + filetypes = { 'rust' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local reused_dir = is_library(fname) + if reused_dir then + on_dir(reused_dir) + return + end + + local cargo_crate_dir = vim.fs.root(fname, { 'Cargo.toml' }) + local cargo_workspace_root + + if cargo_crate_dir == nil then + on_dir( + vim.fs.root(fname, { 'rust-project.json' }) + or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) + ) + return + end + + local cmd = { + 'cargo', + 'metadata', + '--no-deps', + '--format-version', + '1', + '--manifest-path', + cargo_crate_dir .. '/Cargo.toml', + } + + vim.system(cmd, { text = true }, function(output) + if output.code == 0 then + if output.stdout then + local result = vim.json.decode(output.stdout) + if result['workspace_root'] then + cargo_workspace_root = vim.fs.normalize(result['workspace_root']) + end + end + + on_dir(cargo_workspace_root or cargo_crate_dir) + else + vim.schedule(function() + vim.notify(('[rust_analyzer] cmd failed with code %d: %s\n%s'):format(output.code, cmd, output.stderr)) + end) + end + end) + end, + capabilities = { + experimental = { + serverStatusNotification = true, + }, + }, + before_init = function(init_params, config) + -- See https://github.com/rust-lang/rust-analyzer/blob/eb5da56d839ae0a9e9f50774fa3eb78eb0964550/docs/dev/lsp-extensions.md?plain=1#L26 + if config.settings and config.settings['rust-analyzer'] then + init_params.initializationOptions = config.settings['rust-analyzer'] + end + end, + on_attach = function(_, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspCargoReload', function() + reload_workspace(bufnr) + end, { desc = 'Reload current cargo workspace' }) + end, +} diff --git a/.config/nvim/lsp/salt_ls.lua b/.config/nvim/lsp/salt_ls.lua new file mode 100644 index 0000000..6bbb1d2 --- /dev/null +++ b/.config/nvim/lsp/salt_ls.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- Language server for Salt configuration files. +--- https://github.com/dcermak/salt-lsp +--- +--- The language server can be installed with `pip`: +--- ```sh +--- pip install salt-lsp +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'salt_lsp_server' }, + filetypes = { 'sls' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/scheme_langserver.lua b/.config/nvim/lsp/scheme_langserver.lua new file mode 100644 index 0000000..131dcd6 --- /dev/null +++ b/.config/nvim/lsp/scheme_langserver.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/ufo5260987423/scheme-langserver +--- `scheme-langserver`, a language server protocol implementation for scheme. +--- And for nvim user, please add .sls to scheme file extension list. + +---@type vim.lsp.Config +return { + cmd = { 'scheme-langserver', '~/.scheme-langserver.log', 'enable', 'disable' }, + filetypes = { 'scheme' }, + root_markers = { + 'Akku.manifest', + '.git', + }, +} diff --git a/.config/nvim/lsp/scry.lua b/.config/nvim/lsp/scry.lua new file mode 100644 index 0000000..77431d7 --- /dev/null +++ b/.config/nvim/lsp/scry.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/crystal-lang-tools/scry +--- +--- Crystal language server. + +---@type vim.lsp.Config +return { + cmd = { 'scry' }, + filetypes = { 'crystal' }, + root_markers = { 'shard.yml', '.git' }, +} diff --git a/.config/nvim/lsp/selene3p_ls.lua b/.config/nvim/lsp/selene3p_ls.lua new file mode 100644 index 0000000..0413b11 --- /dev/null +++ b/.config/nvim/lsp/selene3p_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/antonk52/lua-3p-language-servers +--- +--- 3rd party Language Server for Selene lua linter + +---@type vim.lsp.Config +return { + cmd = { 'selene-3p-language-server' }, + filetypes = { 'lua' }, + root_markers = { 'selene.toml' }, +} diff --git a/.config/nvim/lsp/serve_d.lua b/.config/nvim/lsp/serve_d.lua new file mode 100644 index 0000000..d0e00c6 --- /dev/null +++ b/.config/nvim/lsp/serve_d.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/Pure-D/serve-d +--- +--- Microsoft language server protocol implementation for D using workspace-d. +--- Download a binary from https://github.com/Pure-D/serve-d/releases and put it in your $PATH. + +---@type vim.lsp.Config +return { + cmd = { 'serve-d' }, + filetypes = { 'd' }, + root_markers = { 'dub.json', 'dub.sdl', '.git' }, +} diff --git a/.config/nvim/lsp/shopify_theme_ls.lua b/.config/nvim/lsp/shopify_theme_ls.lua new file mode 100644 index 0000000..8dc7b47 --- /dev/null +++ b/.config/nvim/lsp/shopify_theme_ls.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://shopify.dev/docs/api/shopify-cli +--- +--- [Language Server](https://shopify.dev/docs/themes/tools/cli/language-server) and Theme Check (linter) for Shopify themes. +--- +--- `shopify` can be installed via npm `npm install -g @shopify/cli`. +--- +--- Note: This LSP already includes Theme Check so you don't need to use the `theme_check` server configuration as well. + +---@type vim.lsp.Config +return { + cmd = { + 'shopify', + 'theme', + 'language-server', + }, + filetypes = { 'liquid' }, + root_markers = { + '.shopifyignore', + '.theme-check.yml', + '.theme-check.yaml', + 'shopify.theme.toml', + }, + settings = {}, +} diff --git a/.config/nvim/lsp/sixtyfps.lua b/.config/nvim/lsp/sixtyfps.lua new file mode 100644 index 0000000..90cf478 --- /dev/null +++ b/.config/nvim/lsp/sixtyfps.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://github.com/sixtyfpsui/sixtyfps +--- `SixtyFPS`'s language server +--- +--- You can build and install `sixtyfps-lsp` binary with `cargo`: +--- ```sh +--- cargo install sixtyfps-lsp +--- ``` +--- +--- Vim does not have built-in syntax for the `sixtyfps` filetype currently. +--- +--- This can be added via an autocmd: +--- +--- ```lua +--- vim.cmd [[ autocmd BufRead,BufNewFile *.60 set filetype=sixtyfps ]] +--- ``` +--- +--- or by installing a filetype plugin such as https://github.com/RustemB/sixtyfps-vim + +---@type vim.lsp.Config +return { + cmd = { 'sixtyfps-lsp' }, + filetypes = { 'sixtyfps' }, +} diff --git a/.config/nvim/lsp/slangd.lua b/.config/nvim/lsp/slangd.lua new file mode 100644 index 0000000..022a347 --- /dev/null +++ b/.config/nvim/lsp/slangd.lua @@ -0,0 +1,37 @@ +---@brief +--- +--- https://github.com/shader-slang/slang +--- +--- The `slangd` binary can be downloaded as part of [slang releases](https://github.com/shader-slang/slang/releases) or +--- by [building `slang` from source](https://github.com/shader-slang/slang/blob/master/docs/building.md). +--- +--- The server can be configured by passing a "settings" object to vim.lsp.config('slangd'): +--- +--- ```lua +--- vim.lsp.config('slangd', { +--- settings = { +--- slang = { +--- predefinedMacros = {"MY_VALUE_MACRO=1"}, +--- inlayHints = { +--- deducedTypes = true, +--- parameterNames = true, +--- } +--- } +--- } +--- }) +--- ``` +--- Available options are documented [here](https://github.com/shader-slang/slang-vscode-extension/tree/main?tab=readme-ov-file#configurations) +--- or in more detail [here](https://github.com/shader-slang/slang-vscode-extension/blob/main/package.json#L70). + +local bin_name = 'slangd' + +if vim.fn.has 'win32' == 1 then + bin_name = 'slangd.exe' +end + +---@type vim.lsp.Config +return { + cmd = { bin_name }, + filetypes = { 'hlsl', 'shaderslang' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/slint_lsp.lua b/.config/nvim/lsp/slint_lsp.lua new file mode 100644 index 0000000..dedc147 --- /dev/null +++ b/.config/nvim/lsp/slint_lsp.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/slint-ui/slint +--- `Slint`'s language server +--- +--- You can build and install `slint-lsp` binary with `cargo`: +--- ```sh +--- cargo install slint-lsp +--- ``` +--- +--- Vim does not have built-in syntax for the `slint` filetype at this time. +--- +--- This can be added via an autocmd: +--- +--- ```lua +--- vim.cmd [[ autocmd BufRead,BufNewFile *.slint set filetype=slint ]] +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'slint-lsp' }, + filetypes = { 'slint' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/smarty_ls.lua b/.config/nvim/lsp/smarty_ls.lua new file mode 100644 index 0000000..ab7012f --- /dev/null +++ b/.config/nvim/lsp/smarty_ls.lua @@ -0,0 +1,36 @@ +---@brief +--- +--- https://github.com/landeaux/vscode-smarty-langserver-extracted +--- +--- Language server for Smarty. +--- +--- `smarty-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm i -g vscode-smarty-langserver-extracted +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'smarty-language-server', '--stdio' }, + filetypes = { 'smarty' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local cwd = assert(vim.uv.cwd()) + local root = vim.fs.root(fname, { 'composer.json', '.git' }) + + -- prefer cwd if root is a descendant + on_dir(root and vim.fs.relpath(cwd, root) and cwd) + end, + settings = { + smarty = { + pluginDirs = {}, + }, + css = { + validate = true, + }, + }, + init_options = { + storageDir = nil, + }, +} diff --git a/.config/nvim/lsp/smithy_ls.lua b/.config/nvim/lsp/smithy_ls.lua new file mode 100644 index 0000000..7118e05 --- /dev/null +++ b/.config/nvim/lsp/smithy_ls.lua @@ -0,0 +1,44 @@ +---@brief +--- +--- https://github.com/awslabs/smithy-language-server +--- +--- "Smithy Language Server", a Language server for the Smithy IDL. +--- +--- smithy-language-server has no docs that say how to actually install it(?), so look at: +--- https://github.com/smithy-lang/smithy-vscode/blob/600cfcf0db65edce85f02e6d50f5fa2b0862bc8d/src/extension.ts#L78 +--- +--- Maven package: https://central.sonatype.com/artifact/software.amazon.smithy/smithy-language-server +--- +--- Installation: +--- 1. Install coursier, or any tool that can install maven packages. +--- ``` +--- brew install coursier +--- ``` +--- 2. The LS is auto-installed and launched by: +--- ``` +--- coursier launch software.amazon.smithy:smithy-language-server:0.7.0 +--- ``` + +---@type vim.lsp.Config +return { + -- pass 0 as the first argument to use STDIN/STDOUT for communication + cmd = { + 'coursier', + 'launch', + 'software.amazon.smithy:smithy-language-server:0.7.0', + '-M', + 'software.amazon.smithy.lsp.Main', + '--', + '0', + }, + filetypes = { 'smithy' }, + root_markers = { 'smithy-build.json', 'build.gradle', 'build.gradle.kts', '.git' }, + message_level = vim.lsp.protocol.MessageType.Log, + init_options = { + statusBarProvider = 'show-message', + isHttpEnabled = true, + compilerOptions = { + snippetAutoIndent = false, + }, + }, +} diff --git a/.config/nvim/lsp/snakeskin_ls.lua b/.config/nvim/lsp/snakeskin_ls.lua new file mode 100644 index 0000000..82a3eef --- /dev/null +++ b/.config/nvim/lsp/snakeskin_ls.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://www.npmjs.com/package/@snakeskin/cli +--- +--- `snakeskin cli` can be installed via `npm`: +--- ```sh +--- npm install -g @snakeskin/cli +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'snakeskin-cli', 'lsp', '--stdio' }, + filetypes = { 'ss' }, + root_markers = { 'package.json' }, +} diff --git a/.config/nvim/lsp/snyk_ls.lua b/.config/nvim/lsp/snyk_ls.lua new file mode 100644 index 0000000..32d0183 --- /dev/null +++ b/.config/nvim/lsp/snyk_ls.lua @@ -0,0 +1,29 @@ +---@brief +--- +--- https://github.com/snyk/snyk-ls +--- +--- LSP for Snyk Open Source, Snyk Infrastructure as Code, and Snyk Code. + +---@type vim.lsp.Config +return { + cmd = { 'snyk-ls' }, + root_markers = { '.git', '.snyk' }, + filetypes = { + 'go', + 'gomod', + 'javascript', + 'typescript', + 'json', + 'python', + 'requirements', + 'helm', + 'yaml', + 'terraform', + 'terraform-vars', + }, + settings = {}, + -- Configuration from https://github.com/snyk/snyk-ls#configuration-1 + init_options = { + activateSnykCode = 'true', + }, +} diff --git a/.config/nvim/lsp/solang.lua b/.config/nvim/lsp/solang.lua new file mode 100644 index 0000000..ab65531 --- /dev/null +++ b/.config/nvim/lsp/solang.lua @@ -0,0 +1,19 @@ +---@brief +--- +---A language server for Solidity +--- +--- See the [documentation](https://solang.readthedocs.io/en/latest/installing.html) for installation instructions. +--- +--- The language server only provides the following capabilities: +--- * Syntax highlighting +--- * Diagnostics +--- * Hover +--- +--- There is currently no support for completion, goto definition, references, or other functionality. + +---@type vim.lsp.Config +return { + cmd = { 'solang', 'language-server', '--target', 'evm' }, + filetypes = { 'solidity' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/solargraph.lua b/.config/nvim/lsp/solargraph.lua new file mode 100644 index 0000000..6f52195 --- /dev/null +++ b/.config/nvim/lsp/solargraph.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://solargraph.org/ +--- +--- solargraph, a language server for Ruby +--- +--- You can install solargraph via gem install. +--- +--- ```sh +--- gem install --user-install solargraph +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'solargraph', 'stdio' }, + settings = { + solargraph = { + diagnostics = true, + }, + }, + init_options = { formatting = true }, + filetypes = { 'ruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/solc.lua b/.config/nvim/lsp/solc.lua new file mode 100644 index 0000000..aaa2dd1 --- /dev/null +++ b/.config/nvim/lsp/solc.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://docs.soliditylang.org/en/latest/installing-solidity.html +--- +--- solc is the native language server for the Solidity language. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'solc', '--lsp' }, + filetypes = { 'solidity' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('hardhat.config.*', '.git')(fname)) + end, +} diff --git a/.config/nvim/lsp/solidity.lua b/.config/nvim/lsp/solidity.lua new file mode 100644 index 0000000..cdcdbb5 --- /dev/null +++ b/.config/nvim/lsp/solidity.lua @@ -0,0 +1,42 @@ +---@brief +--- +--- https://github.com/qiuxiang/solidity-ls +--- +--- npm i solidity-ls -g +--- +--- Make sure that solc is installed and it's the same version of the file. solc-select is recommended. +--- +--- Solidity language server is a LSP with autocomplete, go to definition and diagnostics. +--- +--- If you use brownie, use this root_markers: +--- root_markers = { 'brownie-config.yaml', '.git' } +--- +--- on includePath, you can add an extra path to search for external libs, on remapping you can remap lib <> path, like: +--- +--- ```lua +--- { solidity = { includePath = '/Users/your_user/.brownie/packages/', remapping = { ["@OpenZeppelin/"] = 'OpenZeppelin/openzeppelin-contracts@4.6.0/' } } } +--- ``` +--- +--- **For brownie users** +--- Change the root_markers to: +--- +--- ```lua +--- root_markers = { 'brownie-config.yaml', '.git' } +--- ``` +--- +--- The best way of using it is to have a package.json in your project folder with the packages that you will use. +--- After installing with package.json, just create a `remappings.txt` with: +--- +--- ``` +--- @OpenZeppelin/=node_modules/OpenZeppelin/openzeppelin-contracts@4.6.0/ +--- ``` +--- +--- You can omit the node_modules as well. + +---@type vim.lsp.Config +return { + cmd = { 'solidity-ls', '--stdio' }, + filetypes = { 'solidity' }, + root_markers = { '.git', 'package.json' }, + settings = { solidity = { includePath = '', remapping = {} } }, +} diff --git a/.config/nvim/lsp/solidity_ls.lua b/.config/nvim/lsp/solidity_ls.lua new file mode 100644 index 0000000..207ff9b --- /dev/null +++ b/.config/nvim/lsp/solidity_ls.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/juanfranblanco/vscode-solidity +--- +--- `vscode-solidity-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g vscode-solidity-server +--- ``` +--- +--- `vscode-solidity-server` is a language server for the Solidity language ported from the VSCode "solidity" extension. + +---@type vim.lsp.Config +return { + cmd = { 'vscode-solidity-server', '--stdio' }, + filetypes = { 'solidity' }, + root_markers = { + 'hardhat.config.js', + 'hardhat.config.ts', + 'foundry.toml', + 'remappings.txt', + 'truffle.js', + 'truffle-config.js', + 'ape-config.yaml', + '.git', + 'package.json', + }, +} diff --git a/.config/nvim/lsp/solidity_ls_nomicfoundation.lua b/.config/nvim/lsp/solidity_ls_nomicfoundation.lua new file mode 100644 index 0000000..7b14c13 --- /dev/null +++ b/.config/nvim/lsp/solidity_ls_nomicfoundation.lua @@ -0,0 +1,28 @@ +---@brief +--- +--- https://github.com/NomicFoundation/hardhat-vscode/blob/development/server/README.md +--- +--- `nomicfoundation-solidity-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g @nomicfoundation/solidity-language-server +--- ``` +--- +--- A language server for the Solidity programming language, built by the Nomic Foundation for the Ethereum community. + +---@type vim.lsp.Config +return { + cmd = { 'nomicfoundation-solidity-language-server', '--stdio' }, + filetypes = { 'solidity' }, + root_markers = { + 'hardhat.config.js', + 'hardhat.config.ts', + 'foundry.toml', + 'remappings.txt', + 'truffle.js', + 'truffle-config.js', + 'ape-config.yaml', + '.git', + 'package.json', + }, +} diff --git a/.config/nvim/lsp/somesass_ls.lua b/.config/nvim/lsp/somesass_ls.lua new file mode 100644 index 0000000..6f17952 --- /dev/null +++ b/.config/nvim/lsp/somesass_ls.lua @@ -0,0 +1,30 @@ +---@brief +--- +--- https://github.com/wkillerud/some-sass/tree/main/packages/language-server +--- +--- `some-sass-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm i -g some-sass-language-server +--- ``` +--- +--- The language server provides: +--- +--- - Full support for @use and @forward, including aliases, prefixes and hiding. +--- - Workspace-wide code navigation and refactoring, such as Rename Symbol. +--- - Rich documentation through SassDoc. +--- - Language features for %placeholder-selectors, both when using them and writing them. +--- - Suggestions and hover info for built-in Sass modules, when used with @use. + +---@type vim.lsp.Config +return { + name = 'somesass_ls', + cmd = { 'some-sass-language-server', '--stdio' }, + filetypes = { 'scss', 'sass' }, + root_markers = { '.git', '.package.json' }, + settings = { + somesass = { + suggestAllFromOpenDocument = true, + }, + }, +} diff --git a/.config/nvim/lsp/sorbet.lua b/.config/nvim/lsp/sorbet.lua new file mode 100644 index 0000000..fe4dee6 --- /dev/null +++ b/.config/nvim/lsp/sorbet.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://sorbet.org +--- +--- Sorbet is a fast, powerful type checker designed for Ruby. +--- +--- You can install Sorbet via gem install. You might also be interested in how to set +--- Sorbet up for new projects: https://sorbet.org/docs/adopting. +--- +--- ```sh +--- gem install sorbet +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'srb', 'tc', '--lsp' }, + filetypes = { 'ruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/sourcekit.lua b/.config/nvim/lsp/sourcekit.lua new file mode 100644 index 0000000..11d7b02 --- /dev/null +++ b/.config/nvim/lsp/sourcekit.lua @@ -0,0 +1,40 @@ +---@brief +--- +--- https://github.com/swiftlang/sourcekit-lsp +--- +--- Language server for Swift and C/C++/Objective-C. + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'sourcekit-lsp' }, + filetypes = { 'swift', 'objc', 'objcpp', 'c', 'cpp' }, + root_dir = function(bufnr, on_dir) + local filename = vim.api.nvim_buf_get_name(bufnr) + on_dir( + util.root_pattern 'buildServer.json'(filename) + or util.root_pattern('*.xcodeproj', '*.xcworkspace')(filename) + -- better to keep it at the end, because some modularized apps contain multiple Package.swift files + or util.root_pattern('compile_commands.json', 'Package.swift')(filename) + or vim.fs.dirname(vim.fs.find('.git', { path = filename, upward = true })[1]) + ) + end, + get_language_id = function(_, ftype) + local t = { objc = 'objective-c', objcpp = 'objective-cpp' } + return t[ftype] or ftype + end, + capabilities = { + workspace = { + didChangeWatchedFiles = { + dynamicRegistration = true, + }, + }, + textDocument = { + diagnostic = { + dynamicRegistration = true, + relatedDocumentSupport = true, + }, + }, + }, +} diff --git a/.config/nvim/lsp/spectral.lua b/.config/nvim/lsp/spectral.lua new file mode 100644 index 0000000..599a773 --- /dev/null +++ b/.config/nvim/lsp/spectral.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://github.com/luizcorreia/spectral-language-server +--- `A flexible JSON/YAML linter for creating automated style guides, with baked in support for OpenAPI v2 & v3.` +--- +--- `spectral-language-server` can be installed via `npm`: +--- ```sh +--- npm i -g spectral-language-server +--- ``` +--- See [vscode-spectral](https://github.com/stoplightio/vscode-spectral#extension-settings) for configuration options. + +---@type vim.lsp.Config +return { + cmd = { 'spectral-language-server', '--stdio' }, + filetypes = { 'yaml', 'json', 'yml' }, + root_markers = { '.spectral.yaml', '.spectral.yml', '.spectral.json', '.spectral.js' }, + settings = { + enable = true, + run = 'onType', + validateLanguages = { 'yaml', 'json', 'yml' }, + }, +} diff --git a/.config/nvim/lsp/spyglassmc_language_server.lua b/.config/nvim/lsp/spyglassmc_language_server.lua new file mode 100644 index 0000000..61d7205 --- /dev/null +++ b/.config/nvim/lsp/spyglassmc_language_server.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/SpyglassMC/Spyglass/tree/main/packages/language-server +--- +--- Language server for Minecraft datapacks. +--- +--- `spyglassmc-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm i -g @spyglassmc/language-server +--- ``` +--- +--- You may also need to configure the filetype: +--- +--- `autocmd BufNewFile,BufRead *.mcfunction set filetype=mcfunction` +--- +--- This is automatically done by [CrystalAlpha358/vim-mcfunction](https://github.com/CrystalAlpha358/vim-mcfunction), which also provide syntax highlight. + +---@type vim.lsp.Config +return { + cmd = { 'spyglassmc-language-server', '--stdio' }, + filetypes = { 'mcfunction' }, + root_markers = { 'pack.mcmeta' }, +} diff --git a/.config/nvim/lsp/sqlls.lua b/.config/nvim/lsp/sqlls.lua new file mode 100644 index 0000000..04e6d61 --- /dev/null +++ b/.config/nvim/lsp/sqlls.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/joe-re/sql-language-server +--- +--- This LSP can be installed via `npm`. Find further instructions on manual installation of the sql-language-server at [joe-re/sql-language-server](https://github.com/joe-re/sql-language-server). + +---@type vim.lsp.Config +return { + cmd = { 'sql-language-server', 'up', '--method', 'stdio' }, + filetypes = { 'sql', 'mysql' }, + root_markers = { '.sqllsrc.json' }, + settings = {}, +} diff --git a/.config/nvim/lsp/sqls.lua b/.config/nvim/lsp/sqls.lua new file mode 100644 index 0000000..994c45e --- /dev/null +++ b/.config/nvim/lsp/sqls.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://github.com/sqls-server/sqls +--- +--- ```lua +--- vim.lsp.config('sqls', { +--- cmd = {"path/to/command", "-config", "path/to/config.yml"}; +--- ... +--- }) +--- ``` +--- Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). + +---@type vim.lsp.Config +return { + cmd = { 'sqls' }, + filetypes = { 'sql', 'mysql' }, + root_markers = { 'config.yml' }, + settings = {}, +} diff --git a/.config/nvim/lsp/sqruff.lua b/.config/nvim/lsp/sqruff.lua new file mode 100644 index 0000000..5f87919 --- /dev/null +++ b/.config/nvim/lsp/sqruff.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/quarylabs/sqruff +--- +--- `sqruff` can be installed by following the instructions [here](https://github.com/quarylabs/sqruff?tab=readme-ov-file#installation) +--- + +---@type vim.lsp.Config +return { + cmd = { 'sqruff', 'lsp' }, + filetypes = { 'sql' }, + root_markers = { '.sqruff', '.git' }, +} diff --git a/.config/nvim/lsp/standardrb.lua b/.config/nvim/lsp/standardrb.lua new file mode 100644 index 0000000..25a94aa --- /dev/null +++ b/.config/nvim/lsp/standardrb.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/testdouble/standard +--- +--- Ruby Style Guide, with linter & automatic code fixer. + +---@type vim.lsp.Config +return { + cmd = { 'standardrb', '--lsp' }, + filetypes = { 'ruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/starlark_rust.lua b/.config/nvim/lsp/starlark_rust.lua new file mode 100644 index 0000000..78980db --- /dev/null +++ b/.config/nvim/lsp/starlark_rust.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/facebookexperimental/starlark-rust/ +--- The LSP part of `starlark-rust` is not currently documented, +--- but the implementation works well for linting. +--- This gives valuable warnings for potential issues in the code, +--- but does not support refactorings. +--- +--- It can be installed with cargo: https://crates.io/crates/starlark + +---@type vim.lsp.Config +return { + cmd = { 'starlark', '--lsp' }, + filetypes = { 'star', 'bzl', 'BUILD.bazel' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/starpls.lua b/.config/nvim/lsp/starpls.lua new file mode 100644 index 0000000..921ed71 --- /dev/null +++ b/.config/nvim/lsp/starpls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/withered-magic/starpls +--- +--- `starpls` is an LSP implementation for Starlark. Installation instructions can be found in the project's README. + +---@type vim.lsp.Config +return { + cmd = { 'starpls' }, + filetypes = { 'bzl' }, + root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' }, +} diff --git a/.config/nvim/lsp/statix.lua b/.config/nvim/lsp/statix.lua new file mode 100644 index 0000000..5c1ef32 --- /dev/null +++ b/.config/nvim/lsp/statix.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/nerdypepper/statix +--- +--- lints and suggestions for the nix programming language + +---@type vim.lsp.Config +return { + cmd = { 'statix', 'check', '--stdin' }, + filetypes = { 'nix' }, + root_markers = { 'flake.nix', '.git' }, +} diff --git a/.config/nvim/lsp/steep.lua b/.config/nvim/lsp/steep.lua new file mode 100644 index 0000000..a617101 --- /dev/null +++ b/.config/nvim/lsp/steep.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/soutaro/steep +--- +--- `steep` is a static type checker for Ruby. +--- +--- You need `Steepfile` to make it work. Generate it with `steep init`. + +---@type vim.lsp.Config +return { + cmd = { 'steep', 'langserver' }, + filetypes = { 'ruby', 'eruby' }, + root_markers = { 'Steepfile', '.git' }, +} diff --git a/.config/nvim/lsp/stimulus_ls.lua b/.config/nvim/lsp/stimulus_ls.lua new file mode 100644 index 0000000..8319334 --- /dev/null +++ b/.config/nvim/lsp/stimulus_ls.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://www.npmjs.com/package/stimulus-language-server +--- +--- `stimulus-lsp` can be installed via `npm`: +--- +--- ```sh +--- npm install -g stimulus-language-server +--- ``` +--- +--- or via `yarn`: +--- +--- ```sh +--- yarn global add stimulus-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'stimulus-language-server', '--stdio' }, + filetypes = { 'html', 'ruby', 'eruby', 'blade', 'php' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/stylelint_lsp.lua b/.config/nvim/lsp/stylelint_lsp.lua new file mode 100644 index 0000000..d17d295 --- /dev/null +++ b/.config/nvim/lsp/stylelint_lsp.lua @@ -0,0 +1,55 @@ +---@brief +--- +--- https://github.com/bmatcuk/stylelint-lsp +--- +--- `stylelint-lsp` can be installed via `npm`: +--- +--- ```sh +--- npm i -g stylelint-lsp +--- ``` +--- +--- Can be configured by passing a `settings.stylelintplus` object to vim.lsp.config('stylelint_lsp'): +--- +--- ```lua +--- vim.lsp.config('stylelint_lsp', { +--- settings = { +--- stylelintplus = { +--- -- see available options in stylelint-lsp documentation +--- } +--- } +--- }) +--- ``` + +local util = require 'lspconfig.util' + +local root_file = { + '.stylelintrc', + '.stylelintrc.mjs', + '.stylelintrc.cjs', + '.stylelintrc.js', + '.stylelintrc.json', + '.stylelintrc.yaml', + '.stylelintrc.yml', + 'stylelint.config.mjs', + 'stylelint.config.cjs', + 'stylelint.config.js', +} + +root_file = util.insert_package_json(root_file, 'stylelint') + +---@type vim.lsp.Config +return { + cmd = { 'stylelint-lsp', '--stdio' }, + filetypes = { + 'astro', + 'css', + 'html', + 'less', + 'scss', + 'sugarss', + 'vue', + 'wxss', + }, + root_markers = root_file, + settings = {}, +} diff --git a/.config/nvim/lsp/stylua.lua b/.config/nvim/lsp/stylua.lua new file mode 100644 index 0000000..33f7608 --- /dev/null +++ b/.config/nvim/lsp/stylua.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/JohnnyMorganz/StyLua +--- +--- A deterministic code formatter for Lua 5.1, 5.2, 5.3, 5.4, LuaJIT, Luau and CfxLua/FiveM Lua + +---@type vim.lsp.Config +return { + cmd = { 'stylua', '--lsp' }, + filetypes = { 'lua' }, + root_markers = { '.stylua.toml', 'stylua.toml', '.editorconfig' }, +} diff --git a/.config/nvim/lsp/stylua3p_ls.lua b/.config/nvim/lsp/stylua3p_ls.lua new file mode 100644 index 0000000..693e792 --- /dev/null +++ b/.config/nvim/lsp/stylua3p_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/antonk52/lua-3p-language-servers +--- +--- 3rd party Language Server for Stylua lua formatter + +---@type vim.lsp.Config +return { + cmd = { 'stylua-3p-language-server' }, + filetypes = { 'lua' }, + root_markers = { '.stylua.toml', 'stylua.toml' }, +} diff --git a/.config/nvim/lsp/superhtml.lua b/.config/nvim/lsp/superhtml.lua new file mode 100644 index 0000000..522b62b --- /dev/null +++ b/.config/nvim/lsp/superhtml.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/kristoff-it/superhtml +--- +--- HTML Language Server & Templating Language Library +--- +--- This LSP is designed to tightly adhere to the HTML spec as well as enforcing +--- some additional rules that ensure HTML clarity. +--- +--- If you want to disable HTML support for another HTML LSP, add the following +--- to your configuration: +--- +--- ```lua +--- vim.lsp.config('superhtml', { +--- filetypes = { 'superhtml' } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'superhtml', 'lsp' }, + filetypes = { 'superhtml', 'html' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/svelte.lua b/.config/nvim/lsp/svelte.lua new file mode 100644 index 0000000..53f3e73 --- /dev/null +++ b/.config/nvim/lsp/svelte.lua @@ -0,0 +1,47 @@ +---@brief +--- +--- https://github.com/sveltejs/language-tools/tree/master/packages/language-server +--- +--- Note: assuming that [ts_ls](#ts_ls) is setup, full JavaScript/TypeScript support (find references, rename, etc of symbols in Svelte files when working in JS/TS files) requires per-project installation and configuration of [typescript-svelte-plugin](https://github.com/sveltejs/language-tools/tree/master/packages/typescript-plugin#usage). +--- +--- `svelte-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g svelte-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'svelteserver', '--stdio' }, + filetypes = { 'svelte' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + -- Svelte LSP only supports file:// schema. https://github.com/sveltejs/language-tools/issues/2777 + if vim.uv.fs_stat(fname) ~= nil then + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + on_dir(project_root) + end + end, + on_attach = function(client, bufnr) + -- Workaround to trigger reloading JS/TS files + -- See https://github.com/sveltejs/language-tools/issues/2008 + vim.api.nvim_create_autocmd('BufWritePost', { + pattern = { '*.js', '*.ts' }, + group = vim.api.nvim_create_augroup('lspconfig.svelte', {}), + callback = function(ctx) + -- internal API to sync changes that have not yet been saved to the file system + client:notify('$/onDidChangeTsOrJsFile', { uri = ctx.match }) + end, + }) + vim.api.nvim_buf_create_user_command(bufnr, 'LspMigrateToSvelte5', function() + client:exec_cmd({ + title = 'Migrate Component to Svelte 5 Syntax', + command = 'migrate_to_svelte_5', + arguments = { vim.uri_from_bufnr(bufnr) }, + }) + end, { desc = 'Migrate Component to Svelte 5 Syntax' }) + end, +} diff --git a/.config/nvim/lsp/svlangserver.lua b/.config/nvim/lsp/svlangserver.lua new file mode 100644 index 0000000..83fc35b --- /dev/null +++ b/.config/nvim/lsp/svlangserver.lua @@ -0,0 +1,42 @@ +---@brief +--- +--- https://github.com/imc-trading/svlangserver +--- +--- Language server for SystemVerilog. +--- +--- `svlangserver` can be installed via `npm`: +--- +--- ```sh +--- $ npm install -g @imc-trading/svlangserver +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'svlangserver' }, + filetypes = { 'verilog', 'systemverilog' }, + root_markers = { '.svlangserver', '.git' }, + settings = { + systemverilog = { + includeIndexing = { '*.{v,vh,sv,svh}', '**/*.{v,vh,sv,svh}' }, + }, + }, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspSvlangserverBuildIndex', function() + client:exec_cmd({ + title = 'Build Index', + command = 'systemverilog.build_index', + }, { bufnr = bufnr }) + end, { + desc = 'Instructs language server to rerun indexing', + }) + vim.api.nvim_buf_create_user_command(bufnr, 'LspSvlangserverReportHierarchy', function() + client:exec_cmd({ + title = 'Build Index', + command = 'systemverilog.build_index', + arguments = { vim.fn.expand '<cword>' }, + }, { bufnr = bufnr }) + end, { + desc = 'Generates hierarchy for the given module', + }) + end, +} diff --git a/.config/nvim/lsp/svls.lua b/.config/nvim/lsp/svls.lua new file mode 100644 index 0000000..4fea117 --- /dev/null +++ b/.config/nvim/lsp/svls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/dalance/svls +--- +--- Language server for verilog and SystemVerilog +--- +--- `svls` can be installed via `cargo`: +--- ```sh +--- cargo install svls +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'svls' }, + filetypes = { 'verilog', 'systemverilog' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/swift_mesonls.lua b/.config/nvim/lsp/swift_mesonls.lua new file mode 100644 index 0000000..f2670d7 --- /dev/null +++ b/.config/nvim/lsp/swift_mesonls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/JCWasmx86/Swift-MesonLSP +--- +--- Meson language server written in Swift + +---@type vim.lsp.Config +return { + cmd = { 'Swift-MesonLSP', '--lsp' }, + filetypes = { 'meson' }, + root_markers = { 'meson.build', 'meson_options.txt', 'meson.options', '.git' }, +} diff --git a/.config/nvim/lsp/syntax_tree.lua b/.config/nvim/lsp/syntax_tree.lua new file mode 100644 index 0000000..ece52e4 --- /dev/null +++ b/.config/nvim/lsp/syntax_tree.lua @@ -0,0 +1,21 @@ +---@brief +--- +--- https://ruby-syntax-tree.github.io/syntax_tree/ +--- +--- A fast Ruby parser and formatter. +--- +--- Syntax Tree is a suite of tools built on top of the internal CRuby parser. It +--- provides the ability to generate a syntax tree from source, as well as the +--- tools necessary to inspect and manipulate that syntax tree. It can be used to +--- build formatters, linters, language servers, and more. +--- +--- ```sh +--- gem install syntax_tree +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'stree', 'lsp' }, + filetypes = { 'ruby' }, + root_markers = { '.streerc', 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/systemd_ls.lua b/.config/nvim/lsp/systemd_ls.lua new file mode 100644 index 0000000..b93f68a --- /dev/null +++ b/.config/nvim/lsp/systemd_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/psacawa/systemd-language-server +--- +--- `systemd-language-server` can be installed via `pip`: +--- ```sh +--- pip install systemd-language-server +--- ``` +--- +--- Language Server for Systemd unit files + +---@type vim.lsp.Config +return { + cmd = { 'systemd-language-server' }, + filetypes = { 'systemd' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/tabby_ml.lua b/.config/nvim/lsp/tabby_ml.lua new file mode 100644 index 0000000..e21db46 --- /dev/null +++ b/.config/nvim/lsp/tabby_ml.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://tabby.tabbyml.com/blog/running-tabby-as-a-language-server +--- +--- Language server for Tabby, an opensource, self-hosted AI coding assistant. +--- +--- `tabby-agent` can be installed via `npm`: +--- +--- ```sh +--- npm install --global tabby-agent +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'tabby-agent', '--lsp', '--stdio' }, + filetypes = {}, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/tailwindcss.lua b/.config/nvim/lsp/tailwindcss.lua new file mode 100644 index 0000000..1608d52 --- /dev/null +++ b/.config/nvim/lsp/tailwindcss.lua @@ -0,0 +1,135 @@ +---@brief +--- https://github.com/tailwindlabs/tailwindcss-intellisense +--- +--- Tailwind CSS Language Server can be installed via npm: +--- +--- npm install -g @tailwindcss/language-server +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'tailwindcss-language-server', '--stdio' }, + -- filetypes copied and adjusted from tailwindcss-intellisense + filetypes = { + -- html + 'aspnetcorerazor', + 'astro', + 'astro-markdown', + 'blade', + 'clojure', + 'django-html', + 'htmldjango', + 'edge', + 'eelixir', -- vim ft + 'elixir', + 'ejs', + 'erb', + 'eruby', -- vim ft + 'gohtml', + 'gohtmltmpl', + 'haml', + 'handlebars', + 'hbs', + 'html', + 'htmlangular', + 'html-eex', + 'heex', + 'jade', + 'leaf', + 'liquid', + 'markdown', + 'mdx', + 'mustache', + 'njk', + 'nunjucks', + 'php', + 'razor', + 'slim', + 'twig', + -- css + 'css', + 'less', + 'postcss', + 'sass', + 'scss', + 'stylus', + 'sugarss', + -- js + 'javascript', + 'javascriptreact', + 'reason', + 'rescript', + 'typescript', + 'typescriptreact', + -- mixed + 'vue', + 'svelte', + 'templ', + }, + settings = { + tailwindCSS = { + validate = true, + lint = { + cssConflict = 'warning', + invalidApply = 'error', + invalidScreen = 'error', + invalidVariant = 'error', + invalidConfigPath = 'error', + invalidTailwindDirective = 'error', + recommendedVariantOrder = 'warning', + }, + classAttributes = { + 'class', + 'className', + 'class:list', + 'classList', + 'ngClass', + }, + includeLanguages = { + eelixir = 'html-eex', + elixir = 'phoenix-heex', + eruby = 'erb', + heex = 'phoenix-heex', + htmlangular = 'html', + templ = 'html', + }, + }, + }, + before_init = function(_, config) + if not config.settings then + config.settings = {} + end + if not config.settings.editor then + config.settings.editor = {} + end + if not config.settings.editor.tabSize then + config.settings.editor.tabSize = vim.lsp.util.get_effective_tabstop() + end + end, + workspace_required = true, + root_dir = function(bufnr, on_dir) + local root_files = { + -- Generic + 'tailwind.config.js', + 'tailwind.config.cjs', + 'tailwind.config.mjs', + 'tailwind.config.ts', + 'postcss.config.js', + 'postcss.config.cjs', + 'postcss.config.mjs', + 'postcss.config.ts', + -- Django + 'theme/static_src/tailwind.config.js', + 'theme/static_src/tailwind.config.cjs', + 'theme/static_src/tailwind.config.mjs', + 'theme/static_src/tailwind.config.ts', + 'theme/static_src/postcss.config.js', + -- Fallback for tailwind v4, where tailwind.config.* is not required anymore + '.git', + } + local fname = vim.api.nvim_buf_get_name(bufnr) + root_files = util.insert_package_json(root_files, 'tailwindcss', fname) + root_files = util.root_markers_with_field(root_files, { 'mix.lock', 'Gemfile.lock' }, 'tailwind', fname) + on_dir(vim.fs.dirname(vim.fs.find(root_files, { path = fname, upward = true })[1])) + end, +} diff --git a/.config/nvim/lsp/taplo.lua b/.config/nvim/lsp/taplo.lua new file mode 100644 index 0000000..694fafa --- /dev/null +++ b/.config/nvim/lsp/taplo.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://taplo.tamasfe.dev/cli/usage/language-server.html +--- +--- Language server for Taplo, a TOML toolkit. +--- +--- `taplo-cli` can be installed via `cargo`: +--- ```sh +--- cargo install --features lsp --locked taplo-cli +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'taplo', 'lsp', 'stdio' }, + filetypes = { 'toml' }, + root_markers = { '.taplo.toml', 'taplo.toml', '.git' }, +} diff --git a/.config/nvim/lsp/tblgen_lsp_server.lua b/.config/nvim/lsp/tblgen_lsp_server.lua new file mode 100644 index 0000000..444bf46 --- /dev/null +++ b/.config/nvim/lsp/tblgen_lsp_server.lua @@ -0,0 +1,25 @@ +---@brief +--- +--- https://mlir.llvm.org/docs/Tools/MLIRLSP/#tablegen-lsp-language-server--tblgen-lsp-server +--- +--- The Language Server for the LLVM TableGen language +--- +--- `tblgen-lsp-server` can be installed at the llvm-project repository (https://github.com/llvm/llvm-project) + +local function get_command() + local cmd = { 'tblgen-lsp-server' } + local files = vim.fs.find('tablegen_compile_commands.yml', { path = vim.fn.expand('%:p:h'), upward = true }) + if #files > 0 then + local file = files[1] + table.insert(cmd, '--tablegen-compilation-database=' .. vim.fs.dirname(file) .. '/tablegen_compile_commands.yml') + end + + return cmd +end + +---@type vim.lsp.Config +return { + cmd = get_command(), + filetypes = { 'tablegen' }, + root_markers = { 'tablegen_compile_commands.yml', '.git' }, +} diff --git a/.config/nvim/lsp/teal_ls.lua b/.config/nvim/lsp/teal_ls.lua new file mode 100644 index 0000000..f68a5a7 --- /dev/null +++ b/.config/nvim/lsp/teal_ls.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/teal-language/teal-language-server +--- +--- Install with: +--- ``` +--- luarocks install teal-language-server +--- ``` +--- +--- Optional Command Args: +--- * "--log-mode=by_date" - Enable logging in $HOME/.cache/teal-language-server. Log name will be date + pid of process +--- * "--log-mode=by_proj_path" - Enable logging in $HOME/.cache/teal-language-server. Log name will be project path + pid of process +--- * "--verbose=true" - Increases log level. Does nothing unless log-mode is set + +---@type vim.lsp.Config +return { + cmd = { + 'teal-language-server', + }, + filetypes = { + 'teal', + }, + root_markers = { 'tlconfig.lua' }, +} diff --git a/.config/nvim/lsp/templ.lua b/.config/nvim/lsp/templ.lua new file mode 100644 index 0000000..f5333cd --- /dev/null +++ b/.config/nvim/lsp/templ.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://templ.guide +--- +--- The official language server for the templ HTML templating language. + +---@type vim.lsp.Config +return { + cmd = { 'templ', 'lsp' }, + filetypes = { 'templ' }, + root_markers = { 'go.work', 'go.mod', '.git' }, +} diff --git a/.config/nvim/lsp/termux_language_server.lua b/.config/nvim/lsp/termux_language_server.lua new file mode 100644 index 0000000..d8799fe --- /dev/null +++ b/.config/nvim/lsp/termux_language_server.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/termux/termux-language-server +--- +--- Language server for various bash scripts such as Arch PKGBUILD, Gentoo ebuild, Termux build.sh, etc. + +---@type vim.lsp.Config +return { + cmd = { 'termux-language-server' }, + filetypes = { 'PKGBUILD' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/terraform_lsp.lua b/.config/nvim/lsp/terraform_lsp.lua new file mode 100644 index 0000000..bd25157 --- /dev/null +++ b/.config/nvim/lsp/terraform_lsp.lua @@ -0,0 +1,36 @@ +---@brief +--- +--- https://github.com/juliosueiras/terraform-lsp +--- +--- Terraform language server +--- Download a released binary from +--- https://github.com/juliosueiras/terraform-lsp/releases. +--- +--- From https://github.com/hashicorp/terraform-ls#terraform-ls-vs-terraform-lsp: +--- +--- Both HashiCorp and the maintainer of terraform-lsp expressed interest in +--- collaborating on a language server and are working towards a _long-term_ +--- goal of a single stable and feature-complete implementation. +--- +--- For the time being both projects continue to exist, giving users the +--- choice: +--- +--- - `terraform-ls` providing +--- - overall stability (by relying only on public APIs) +--- - compatibility with any provider and any Terraform >=0.12.0 currently +--- less features +--- - due to project being younger and relying on public APIs which may +--- not offer the same functionality yet +--- +--- - `terraform-lsp` providing +--- - currently more features +--- - compatibility with a single particular Terraform (0.12.20 at time of writing) +--- - configs designed for other 0.12 versions may work, but interpretation may be inaccurate +--- - less stability (due to reliance on Terraform's own internal packages) + +---@type vim.lsp.Config +return { + cmd = { 'terraform-lsp' }, + filetypes = { 'terraform', 'hcl' }, + root_markers = { '.terraform', '.git' }, +} diff --git a/.config/nvim/lsp/terraformls.lua b/.config/nvim/lsp/terraformls.lua new file mode 100644 index 0000000..f5897f2 --- /dev/null +++ b/.config/nvim/lsp/terraformls.lua @@ -0,0 +1,40 @@ +---@brief +--- +--- https://github.com/hashicorp/terraform-ls +--- +--- Terraform language server +--- Download a released binary from https://github.com/hashicorp/terraform-ls/releases. +--- +--- From https://github.com/hashicorp/terraform-ls#terraform-ls-vs-terraform-lsp: +--- +--- Both HashiCorp and the maintainer of terraform-lsp expressed interest in +--- collaborating on a language server and are working towards a _long-term_ +--- goal of a single stable and feature-complete implementation. +--- +--- For the time being both projects continue to exist, giving users the +--- choice: +--- +--- - `terraform-ls` providing +--- - overall stability (by relying only on public APIs) +--- - compatibility with any provider and any Terraform >=0.12.0 currently +--- less features +--- - due to project being younger and relying on public APIs which may +--- not offer the same functionality yet +--- +--- - `terraform-lsp` providing +--- - currently more features +--- - compatibility with a single particular Terraform (0.12.20 at time of writing) +--- - configs designed for other 0.12 versions may work, but interpretation may be inaccurate +--- - less stability (due to reliance on Terraform's own internal packages) +--- +--- Note, that the `settings` configuration option uses the `workspace/didChangeConfiguration` event, +--- [which is not supported by terraform-ls](https://github.com/hashicorp/terraform-ls/blob/main/docs/features.md). +--- Instead you should use `init_options` which passes the settings as part of the LSP initialize call +--- [as is required by terraform-ls](https://github.com/hashicorp/terraform-ls/blob/main/docs/SETTINGS.md#how-to-pass-settings). + +---@type vim.lsp.Config +return { + cmd = { 'terraform-ls', 'serve' }, + filetypes = { 'terraform', 'terraform-vars' }, + root_markers = { '.terraform', '.git' }, +} diff --git a/.config/nvim/lsp/texlab.lua b/.config/nvim/lsp/texlab.lua new file mode 100644 index 0000000..de21213 --- /dev/null +++ b/.config/nvim/lsp/texlab.lua @@ -0,0 +1,181 @@ +---@brief +--- +--- https://github.com/latex-lsp/texlab +--- +--- A completion engine built from scratch for (La)TeX. +--- +--- See https://github.com/latex-lsp/texlab/wiki/Configuration for configuration options. +--- +--- There are some non standard commands supported, namely: +--- `LspTexlabBuild`, `LspTexlabForward`, `LspTexlabCancelBuild`, +--- `LspTexlabDependencyGraph`, `LspTexlabCleanArtifacts`, +--- `LspTexlabCleanAuxiliary`, `LspTexlabFindEnvironments`, +--- and `LspTexlabChangeEnvironment`. + +local function buf_build(client, bufnr) + local win = vim.api.nvim_get_current_win() + local params = vim.lsp.util.make_position_params(win, client.offset_encoding) + client:request('textDocument/build', params, function(err, result) + if err then + error(tostring(err)) + end + local texlab_build_status = { + [0] = 'Success', + [1] = 'Error', + [2] = 'Failure', + [3] = 'Cancelled', + } + vim.notify('Build ' .. texlab_build_status[result.status], vim.log.levels.INFO) + end, bufnr) +end + +local function buf_search(client, bufnr) + local win = vim.api.nvim_get_current_win() + local params = vim.lsp.util.make_position_params(win, client.offset_encoding) + client:request('textDocument/forwardSearch', params, function(err, result) + if err then + error(tostring(err)) + end + local texlab_forward_status = { + [0] = 'Success', + [1] = 'Error', + [2] = 'Failure', + [3] = 'Unconfigured', + } + vim.notify('Search ' .. texlab_forward_status[result.status], vim.log.levels.INFO) + end, bufnr) +end + +local function buf_cancel_build(client, bufnr) + return client:exec_cmd({ + title = 'cancel', + command = 'texlab.cancelBuild', + }, { bufnr = bufnr }) +end + +local function dependency_graph(client) + client:exec_cmd({ command = 'texlab.showDependencyGraph' }, { bufnr = 0 }, function(err, result) + if err then + return vim.notify(err.code .. ': ' .. err.message, vim.log.levels.ERROR) + end + vim.notify('The dependency graph has been generated:\n' .. result, vim.log.levels.INFO) + end) +end + +local function command_factory(cmd) + local cmd_tbl = { + Auxiliary = 'texlab.cleanAuxiliary', + Artifacts = 'texlab.cleanArtifacts', + } + return function(client, bufnr) + return client:exec_cmd({ + title = ('clean_%s'):format(cmd), + command = cmd_tbl[cmd], + arguments = { { uri = vim.uri_from_bufnr(bufnr) } }, + }, { bufnr = bufnr }, function(err, _) + if err then + vim.notify(('Failed to clean %s files: %s'):format(cmd, err.message), vim.log.levels.ERROR) + else + vim.notify(('Command %s executed successfully'):format(cmd), vim.log.levels.INFO) + end + end) + end +end + +local function buf_find_envs(client, bufnr) + local win = vim.api.nvim_get_current_win() + client:exec_cmd({ + command = 'texlab.findEnvironments', + arguments = { vim.lsp.util.make_position_params(win, client.offset_encoding) }, + }, { bufnr = bufnr }, function(err, result) + if err then + return vim.notify(err.code .. ': ' .. err.message, vim.log.levels.ERROR) + end + local env_names = {} + local max_length = 1 + for _, env in ipairs(result) do + table.insert(env_names, env.name.text) + max_length = math.max(max_length, string.len(env.name.text)) + end + for i, name in ipairs(env_names) do + env_names[i] = string.rep(' ', i - 1) .. name + end + vim.lsp.util.open_floating_preview(env_names, '', { + height = #env_names, + width = math.max((max_length + #env_names - 1), (string.len 'Environments')), + focusable = false, + focus = false, + title = 'Environments', + }) + end) +end + +local function buf_change_env(client, bufnr) + vim.ui.input({ prompt = 'New environment name: ' }, function(input) + if not input or input == '' then + return vim.notify('No environment name provided', vim.log.levels.WARN) + end + local pos = vim.api.nvim_win_get_cursor(0) + return client:exec_cmd({ + title = 'change_environment', + command = 'texlab.changeEnvironment', + arguments = { + { + textDocument = { uri = vim.uri_from_bufnr(bufnr) }, + position = { line = pos[1] - 1, character = pos[2] }, + newName = tostring(input), + }, + }, + }, { bufnr = bufnr }) + end) +end + +---@type vim.lsp.Config +return { + cmd = { 'texlab' }, + filetypes = { 'tex', 'plaintex', 'bib' }, + root_markers = { '.git', '.latexmkrc', 'latexmkrc', '.texlabroot', 'texlabroot', 'Tectonic.toml' }, + settings = { + texlab = { + rootDirectory = nil, + build = { + executable = 'latexmk', + args = { '-pdf', '-interaction=nonstopmode', '-synctex=1', '%f' }, + onSave = false, + forwardSearchAfter = false, + }, + forwardSearch = { + executable = nil, + args = {}, + }, + chktex = { + onOpenAndSave = false, + onEdit = false, + }, + diagnosticsDelay = 300, + latexFormatter = 'latexindent', + latexindent = { + ['local'] = nil, -- local is a reserved keyword + modifyLineBreaks = false, + }, + bibtexFormatter = 'texlab', + formatterLineLength = 80, + }, + }, + on_attach = function(client, bufnr) + for _, cmd in ipairs({ + { name = 'TexlabBuild', fn = buf_build, desc = 'Build the current buffer' }, + { name = 'TexlabForward', fn = buf_search, desc = 'Forward search from current position' }, + { name = 'TexlabCancelBuild', fn = buf_cancel_build, desc = 'Cancel the current build' }, + { name = 'TexlabDependencyGraph', fn = dependency_graph, desc = 'Show the dependency graph' }, + { name = 'TexlabCleanArtifacts', fn = command_factory('Artifacts'), desc = 'Clean the artifacts' }, + { name = 'TexlabCleanAuxiliary', fn = command_factory('Auxiliary'), desc = 'Clean the auxiliary files' }, + { name = 'TexlabFindEnvironments', fn = buf_find_envs, desc = 'Find the environments at current position' }, + { name = 'TexlabChangeEnvironment', fn = buf_change_env, desc = 'Change the environment at current position' }, + }) do + vim.api.nvim_buf_create_user_command(bufnr, 'Lsp' .. cmd.name, function() + cmd.fn(client, bufnr) + end, { desc = cmd.desc }) + end + end, +} diff --git a/.config/nvim/lsp/textlsp.lua b/.config/nvim/lsp/textlsp.lua new file mode 100644 index 0000000..0a2b5ed --- /dev/null +++ b/.config/nvim/lsp/textlsp.lua @@ -0,0 +1,45 @@ +---@brief +--- +--- https://github.com/hangyav/textLSP +--- +--- `textLSP` is an LSP server for text spell and grammar checking with various AI tools. +--- It supports multiple text file formats, such as LaTeX, Org or txt. +--- +--- For the available text analyzer tools and their configuration, see the [GitHub](https://github.com/hangyav/textLSP) page. +--- By default, all analyzers are disabled in textLSP, since most of them need special settings. +--- For quick testing, LanguageTool is enabled in the default `nvim-lspconfig` configuration. +--- +--- To install run: `pip install textLSP` + +---@type vim.lsp.Config +return { + cmd = { 'textlsp' }, + filetypes = { 'text', 'tex', 'org' }, + root_markers = { '.git' }, + settings = { + textLSP = { + analysers = { + -- by default all analysers are disabled in textLSP, since many of them + -- need custom settings. See github page. LanguageTool is enaled here + -- only for a quick test. + languagetool = { + enabled = true, + check_text = { + on_open = true, + on_save = true, + on_change = false, + }, + }, + }, + documents = { + org = { + org_todo_keywords = { + 'TODO', + 'IN_PROGRESS', + 'DONE', + }, + }, + }, + }, + }, +} diff --git a/.config/nvim/lsp/tflint.lua b/.config/nvim/lsp/tflint.lua new file mode 100644 index 0000000..60af7a8 --- /dev/null +++ b/.config/nvim/lsp/tflint.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/terraform-linters/tflint +--- +--- A pluggable Terraform linter that can act as lsp server. +--- Installation instructions can be found in https://github.com/terraform-linters/tflint#installation. + +---@type vim.lsp.Config +return { + cmd = { 'tflint', '--langserver' }, + filetypes = { 'terraform' }, + root_markers = { '.terraform', '.git', '.tflint.hcl' }, +} diff --git a/.config/nvim/lsp/theme_check.lua b/.config/nvim/lsp/theme_check.lua new file mode 100644 index 0000000..7d8dc88 --- /dev/null +++ b/.config/nvim/lsp/theme_check.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/Shopify/shopify-cli +--- +--- `theme-check-language-server` is bundled with `shopify-cli` or it can also be installed via +--- +--- https://github.com/Shopify/theme-check#installation +--- +--- **NOTE:** +--- If installed via Homebrew, `cmd` must be set to 'theme-check-liquid-server' +--- +--- ```lua +--- vim.lsp.config('theme_check, { +--- cmd = { 'theme-check-liquid-server' } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'theme-check-language-server', '--stdio' }, + filetypes = { 'liquid' }, + root_markers = { '.theme-check.yml' }, + settings = {}, +} diff --git a/.config/nvim/lsp/thriftls.lua b/.config/nvim/lsp/thriftls.lua new file mode 100644 index 0000000..234378b --- /dev/null +++ b/.config/nvim/lsp/thriftls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/joyme123/thrift-ls +--- +--- you can install thriftls by mason or download binary here: https://github.com/joyme123/thrift-ls/releases + +---@type vim.lsp.Config +return { + cmd = { 'thriftls' }, + filetypes = { 'thrift' }, + root_markers = { '.thrift' }, +} diff --git a/.config/nvim/lsp/tilt_ls.lua b/.config/nvim/lsp/tilt_ls.lua new file mode 100644 index 0000000..bc91d2f --- /dev/null +++ b/.config/nvim/lsp/tilt_ls.lua @@ -0,0 +1,18 @@ +---@brief +--- +--- https://github.com/tilt-dev/tilt +--- +--- Tilt language server. +--- +--- You might need to add filetype detection manually: +--- +--- ```vim +--- autocmd BufRead Tiltfile setf=tiltfile +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'tilt', 'lsp', 'start' }, + filetypes = { 'tiltfile' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/tinymist.lua b/.config/nvim/lsp/tinymist.lua new file mode 100644 index 0000000..f02ff19 --- /dev/null +++ b/.config/nvim/lsp/tinymist.lua @@ -0,0 +1,72 @@ +---@brief +--- +--- https://github.com/Myriad-Dreamin/tinymist +--- An integrated language service for Typst [taɪpst]. You can also call it "微霭" [wēi ǎi] in Chinese. +--- +--- Currently some of Tinymist's workspace commands are supported, namely: +--- `LspTinymistExportSvg`, `LspTinymistExportPng`, `LspTinymistExportPdf +--- `LspTinymistExportMarkdown`, `LspTinymistExportText`, `LspTinymistExportQuery`, +--- `LspTinymistExportAnsiHighlight`, `LspTinymistGetServerInfo`, +--- `LspTinymistGetDocumentTrace`, `LspTinymistGetWorkspaceLabels`, and +--- `LspTinymistGetDocumentMetrics`. + +---@param command_name string +---@param client vim.lsp.Client +---@param bufnr integer +---@return fun():nil run_tinymist_command, string cmd_name, string cmd_desc +local function create_tinymist_command(command_name, client, bufnr) + local export_type = command_name:match 'tinymist%.export(%w+)' + local info_type = command_name:match 'tinymist%.(%w+)' + if info_type and info_type:match '^get' then + info_type = info_type:gsub('^get', 'Get') + end + local cmd_display = export_type or info_type + ---@return nil + local function run_tinymist_command() + local arguments = { vim.api.nvim_buf_get_name(bufnr) } + local title_str = export_type and ('Export ' .. cmd_display) or cmd_display + ---@type lsp.Handler + local function handler(err, res) + if err then + return vim.notify(err.code .. ': ' .. err.message, vim.log.levels.ERROR) + end + -- If exporting, show the string result; else, show the table for inspection + vim.notify(export_type and res or vim.inspect(res), vim.log.levels.INFO) + end + return client:exec_cmd({ + title = title_str, + command = command_name, + arguments = arguments, + }, { bufnr = bufnr }, handler) + end + -- Construct a readable command name/desc + local cmd_name = export_type and ('TinymistExport' .. cmd_display) or ('Tinymist' .. cmd_display) ---@type string + local cmd_desc = export_type and ('Export to ' .. cmd_display) or ('Get ' .. cmd_display) ---@type string + return run_tinymist_command, cmd_name, cmd_desc +end + +---@type vim.lsp.Config +return { + cmd = { 'tinymist' }, + filetypes = { 'typst' }, + root_markers = { '.git' }, + on_attach = function(client, bufnr) + for _, command in ipairs { + 'tinymist.exportSvg', + 'tinymist.exportPng', + 'tinymist.exportPdf', + -- 'tinymist.exportHtml', -- Use typst 0.13 + 'tinymist.exportMarkdown', + 'tinymist.exportText', + 'tinymist.exportQuery', + 'tinymist.exportAnsiHighlight', + 'tinymist.getServerInfo', + 'tinymist.getDocumentTrace', + 'tinymist.getWorkspaceLabels', + 'tinymist.getDocumentMetrics', + } do + local cmd_func, cmd_name, cmd_desc = create_tinymist_command(command, client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'Lsp' .. cmd_name, cmd_func, { nargs = 0, desc = cmd_desc }) + end + end, +} diff --git a/.config/nvim/lsp/tofu_ls.lua b/.config/nvim/lsp/tofu_ls.lua new file mode 100644 index 0000000..5c01f66 --- /dev/null +++ b/.config/nvim/lsp/tofu_ls.lua @@ -0,0 +1,11 @@ +---@brief +--- +--- [OpenTofu Language Server](https://github.com/opentofu/tofu-ls) +--- + +---@type vim.lsp.Config +return { + cmd = { 'tofu-ls', 'serve' }, + filetypes = { 'opentofu', 'opentofu-vars' }, + root_markers = { '.terraform', '.git' }, +} diff --git a/.config/nvim/lsp/tombi.lua b/.config/nvim/lsp/tombi.lua new file mode 100644 index 0000000..1f91ba7 --- /dev/null +++ b/.config/nvim/lsp/tombi.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://tombi-toml.github.io/tombi/ +--- +--- Language server for Tombi, a TOML toolkit. +--- + +---@type vim.lsp.Config +return { + cmd = { 'tombi', 'lsp' }, + filetypes = { 'toml' }, + root_markers = { 'tombi.toml', 'pyproject.toml', '.git' }, +} diff --git a/.config/nvim/lsp/ts_ls.lua b/.config/nvim/lsp/ts_ls.lua new file mode 100644 index 0000000..0b5a0a3 --- /dev/null +++ b/.config/nvim/lsp/ts_ls.lua @@ -0,0 +1,126 @@ +---@brief +--- +--- https://github.com/typescript-language-server/typescript-language-server +--- +--- `ts_ls`, aka `typescript-language-server`, is a Language Server Protocol implementation for TypeScript wrapping `tsserver`. Note that `ts_ls` is not `tsserver`. +--- +--- `typescript-language-server` depends on `typescript`. Both packages can be installed via `npm`: +--- ```sh +--- npm install -g typescript typescript-language-server +--- ``` +--- +--- To configure typescript language server, add a +--- [`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) or +--- [`jsconfig.json`](https://code.visualstudio.com/docs/languages/jsconfig) to the root of your +--- project. +--- +--- Here's an example that disables type checking in JavaScript files. +--- +--- ```json +--- { +--- "compilerOptions": { +--- "module": "commonjs", +--- "target": "es6", +--- "checkJs": false +--- }, +--- "exclude": [ +--- "node_modules" +--- ] +--- } +--- ``` +--- +--- Use the `:LspTypescriptSourceAction` command to see "whole file" ("source") code-actions such as: +--- - organize imports +--- - remove unused code +--- +--- ### Monorepo support +--- +--- `ts_ls` supports monorepos by default. It will automatically find the `tsconfig.json` or `jsconfig.json` corresponding to the package you are working on. +--- This works without the need of spawning multiple instances of `ts_ls`, saving memory. +--- +--- It is recommended to use the same version of TypeScript in all packages, and therefore have it available in your workspace root. The location of the TypeScript binary will be determined automatically, but only once. +--- + +---@type vim.lsp.Config +return { + init_options = { hostInfo = 'neovim' }, + cmd = { 'typescript-language-server', '--stdio' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + root_dir = function(bufnr, on_dir) + -- The project root is where the LSP can be started from + -- As stated in the documentation above, this LSP supports monorepos and simple projects. + -- We select then from the project root, which is identified by the presence of a package + -- manager lock file. + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } + -- Give the root markers equal priority by wrapping them in a table + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + + on_dir(project_root) + end, + handlers = { + -- handle rename request for certain code actions like extracting functions / types + ['_typescript.rename'] = function(_, result, ctx) + local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) + vim.lsp.util.show_document({ + uri = result.textDocument.uri, + range = { + start = result.position, + ['end'] = result.position, + }, + }, client.offset_encoding) + vim.lsp.buf.rename() + return vim.NIL + end, + }, + commands = { + ['editor.action.showReferences'] = function(command, ctx) + local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) + local file_uri, position, references = unpack(command.arguments) + + local quickfix_items = vim.lsp.util.locations_to_items(references, client.offset_encoding) + vim.fn.setqflist({}, ' ', { + title = command.title, + items = quickfix_items, + context = { + command = command, + bufnr = ctx.bufnr, + }, + }) + + vim.lsp.util.show_document({ + uri = file_uri, + range = { + start = position, + ['end'] = position, + }, + }, client.offset_encoding) + + vim.cmd('botright copen') + end, + }, + on_attach = function(client, bufnr) + -- ts_ls provides `source.*` code actions that apply to the whole file. These only appear in + -- `vim.lsp.buf.code_action()` if specified in `context.only`. + vim.api.nvim_buf_create_user_command(bufnr, 'LspTypescriptSourceAction', function() + local source_actions = vim.tbl_filter(function(action) + return vim.startswith(action, 'source.') + end, client.server_capabilities.codeActionProvider.codeActionKinds) + + vim.lsp.buf.code_action({ + context = { + only = source_actions, + }, + }) + end, {}) + end, +} diff --git a/.config/nvim/lsp/ts_query_ls.lua b/.config/nvim/lsp/ts_query_ls.lua new file mode 100644 index 0000000..665b2d8 --- /dev/null +++ b/.config/nvim/lsp/ts_query_ls.lua @@ -0,0 +1,43 @@ +---@brief +--- +--- https://github.com/ribru17/ts_query_ls +--- Can be configured by passing a "settings" object to `vim.lsp.config('ts_query_ls', {})`: +--- ```lua +--- vim.lsp.config('ts_query_ls', { +--- init_options = { +--- parser_install_directories = { +--- '/my/parser/install/dir', +--- }, +--- -- This setting is provided by default +--- parser_aliases = { +--- ecma = 'javascript', +--- jsx = 'javascript', +--- php_only = 'php', +--- }, +--- }, +--- }) +--- ``` + +-- Disable the (slow) built-in query linter, which will show duplicate diagnostics. This must be done before the query +-- ftplugin is sourced. +vim.g.query_lint_on = {} + +---@type vim.lsp.Config +return { + cmd = { 'ts_query_ls' }, + filetypes = { 'query' }, + root_markers = { '.tsqueryrc.json', '.git' }, + init_options = { + parser_aliases = { + ecma = 'javascript', + jsx = 'javascript', + php_only = 'php', + }, + parser_install_directories = { + vim.fn.stdpath('data') .. '/site/parser', + }, + }, + on_attach = function(_, buf) + vim.bo[buf].omnifunc = 'v:lua.vim.lsp.omnifunc' + end, +} diff --git a/.config/nvim/lsp/tsgo.lua b/.config/nvim/lsp/tsgo.lua new file mode 100644 index 0000000..b99c731 --- /dev/null +++ b/.config/nvim/lsp/tsgo.lua @@ -0,0 +1,42 @@ +---@brief +--- +--- https://github.com/microsoft/typescript-go +--- +--- `typescript-go` is experimental port of the TypeScript compiler (tsc) and language server (tsserver) to the Go programming language. +--- +--- `tsgo` can be installed via npm `npm install @typescript/native-preview`. +--- +--- ### Monorepo support +--- +--- `tsgo` supports monorepos by default. It will automatically find the `tsconfig.json` or `jsconfig.json` corresponding to the package you are working on. +--- This works without the need of spawning multiple instances of `tsgo`, saving memory. +--- +--- It is recommended to use the same version of TypeScript in all packages, and therefore have it available in your workspace root. The location of the TypeScript binary will be determined automatically, but only once. +--- + +---@type vim.lsp.Config +return { + cmd = { 'tsgo', '--lsp', '--stdio' }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + root_dir = function(bufnr, on_dir) + -- The project root is where the LSP can be started from + -- As stated in the documentation above, this LSP supports monorepos and simple projects. + -- We select then from the project root, which is identified by the presence of a package + -- manager lock file. + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } + -- Give the root markers equal priority by wrapping them in a table + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + + on_dir(project_root) + end, +} diff --git a/.config/nvim/lsp/tsp_server.lua b/.config/nvim/lsp/tsp_server.lua new file mode 100644 index 0000000..bfa8470 --- /dev/null +++ b/.config/nvim/lsp/tsp_server.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/microsoft/typespec +--- +--- The language server for TypeSpec, a language for defining cloud service APIs and shapes. +--- +--- `tsp-server` can be installed together with the typespec compiler via `npm`: +--- ```sh +--- npm install -g @typespec/compiler +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'tsp-server', '--stdio' }, + filetypes = { 'typespec' }, + root_markers = { 'tspconfig.yaml', '.git' }, +} diff --git a/.config/nvim/lsp/ttags.lua b/.config/nvim/lsp/ttags.lua new file mode 100644 index 0000000..a329999 --- /dev/null +++ b/.config/nvim/lsp/ttags.lua @@ -0,0 +1,10 @@ +---@brief +--- +--- https://github.com/npezza93/ttags + +---@type vim.lsp.Config +return { + cmd = { 'ttags', 'lsp' }, + filetypes = { 'ruby', 'rust', 'javascript', 'haskell' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/turbo_ls.lua b/.config/nvim/lsp/turbo_ls.lua new file mode 100644 index 0000000..3fdeca9 --- /dev/null +++ b/.config/nvim/lsp/turbo_ls.lua @@ -0,0 +1,22 @@ +---@brief +--- +--- https://www.npmjs.com/package/turbo-language-server +--- +--- `turbo-language-server` can be installed via `npm`: +--- +--- ```sh +--- npm install -g turbo-language-server +--- ``` +--- +--- or via `yarn`: +--- +--- ```sh +--- yarn global add turbo-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'turbo-language-server', '--stdio' }, + filetypes = { 'html', 'ruby', 'eruby', 'blade', 'php' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/turtle_ls.lua b/.config/nvim/lsp/turtle_ls.lua new file mode 100644 index 0000000..d44b27c --- /dev/null +++ b/.config/nvim/lsp/turtle_ls.lua @@ -0,0 +1,39 @@ +---@brief +--- +--- https://github.com/stardog-union/stardog-language-servers/tree/master/packages/turtle-language-server +--- `turtle-language-server`, An editor-agnostic server providing language intelligence (diagnostics, hover tooltips, etc.) for the W3C standard Turtle RDF syntax via the Language Server Protocol. +--- installable via npm install -g turtle-language-server or yarn global add turtle-language-server. +--- requires node. + +local bin_name = 'turtle-language-server' +local bin_path = os.getenv 'NVM_BIN' +local full_path +if bin_path == nil then + local paths = {} + local sep = ':' + if vim.fn.has 'win32' == 1 then + sep = ';' + end + local path = os.getenv 'PATH' + if path ~= nil then + for str in string.gmatch(path, '([^' .. sep .. ']+)') do + paths[#paths + 1] = str + end + end + for _, p in ipairs(paths) do + local candidate = table.concat({ p, bin_name }, '/') + if (vim.uv.fs_stat(candidate) or {}).type == 'file' then + full_path = candidate + break + end + end +else + full_path = table.concat({ bin_path, bin_name }, '/') +end + +---@type vim.lsp.Config +return { + cmd = { 'node', full_path, '--stdio' }, + filetypes = { 'turtle', 'ttl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/tvm_ffi_navigator.lua b/.config/nvim/lsp/tvm_ffi_navigator.lua new file mode 100644 index 0000000..992e853 --- /dev/null +++ b/.config/nvim/lsp/tvm_ffi_navigator.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/tqchen/ffi-navigator +--- +--- The Language Server for FFI calls in TVM to be able jump between python and C++ +--- +--- FFI navigator can be installed with `pip install ffi-navigator`, buf for more details, please see +--- https://github.com/tqchen/ffi-navigator?tab=readme-ov-file#installation + +---@type vim.lsp.Config +return { + cmd = { 'python', '-m', 'ffi_navigator.langserver' }, + filetypes = { 'python', 'cpp' }, + root_markers = { 'pyproject.toml', '.git' }, +} diff --git a/.config/nvim/lsp/twiggy_language_server.lua b/.config/nvim/lsp/twiggy_language_server.lua new file mode 100644 index 0000000..7b28249 --- /dev/null +++ b/.config/nvim/lsp/twiggy_language_server.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/moetelo/twiggy +--- +--- `twiggy-language-server` can be installed via `npm`: +--- ```sh +--- npm install -g twiggy-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'twiggy-language-server', '--stdio' }, + filetypes = { 'twig' }, + root_markers = { 'composer.json', '.git' }, +} diff --git a/.config/nvim/lsp/ty.lua b/.config/nvim/lsp/ty.lua new file mode 100644 index 0000000..6309771 --- /dev/null +++ b/.config/nvim/lsp/ty.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/astral-sh/ty +--- +--- A Language Server Protocol implementation for ty, an extremely fast Python type checker and language server, written in Rust. +--- +--- For installation instructions, please refer to the [ty documentation](https://github.com/astral-sh/ty/blob/main/README.md#getting-started). + +---@type vim.lsp.Config +return { + cmd = { 'ty', 'server' }, + filetypes = { 'python' }, + root_markers = { 'ty.toml', 'pyproject.toml', 'setup.py', 'setup.cfg', 'requirements.txt', '.git' }, +} diff --git a/.config/nvim/lsp/typeprof.lua b/.config/nvim/lsp/typeprof.lua new file mode 100644 index 0000000..7fa3441 --- /dev/null +++ b/.config/nvim/lsp/typeprof.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/ruby/typeprof +--- +--- `typeprof` is the built-in analysis and LSP tool for Ruby 3.1+. + +---@type vim.lsp.Config +return { + cmd = { 'typeprof', '--lsp', '--stdio' }, + filetypes = { 'ruby', 'eruby' }, + root_markers = { 'Gemfile', '.git' }, +} diff --git a/.config/nvim/lsp/typos_lsp.lua b/.config/nvim/lsp/typos_lsp.lua new file mode 100644 index 0000000..23b39f2 --- /dev/null +++ b/.config/nvim/lsp/typos_lsp.lua @@ -0,0 +1,15 @@ +---@brief +--- +--- https://github.com/crate-ci/typos +--- https://github.com/tekumara/typos-lsp +--- +--- A Language Server Protocol implementation for Typos, a low false-positive +--- source code spell checker, written in Rust. Download it from the releases page +--- on GitHub: https://github.com/tekumara/typos-lsp/releases + +---@type vim.lsp.Config +return { + cmd = { 'typos-lsp' }, + root_markers = { 'typos.toml', '_typos.toml', '.typos.toml', 'pyproject.toml', 'Cargo.toml' }, + settings = {}, +} diff --git a/.config/nvim/lsp/typst_lsp.lua b/.config/nvim/lsp/typst_lsp.lua new file mode 100644 index 0000000..966528b --- /dev/null +++ b/.config/nvim/lsp/typst_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/nvarner/typst-lsp +--- +--- Language server for Typst. + +---@type vim.lsp.Config +return { + cmd = { 'typst-lsp' }, + filetypes = { 'typst' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/uiua.lua b/.config/nvim/lsp/uiua.lua new file mode 100644 index 0000000..eb18893 --- /dev/null +++ b/.config/nvim/lsp/uiua.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/uiua-lang/uiua/ +--- +--- The builtin language server of the Uiua interpreter. +--- +--- The Uiua interpreter can be installed with `cargo install uiua` + +---@type vim.lsp.Config +return { + cmd = { 'uiua', 'lsp' }, + filetypes = { 'uiua' }, + root_markers = { 'main.ua', '.fmt.ua', '.git' }, +} diff --git a/.config/nvim/lsp/ungrammar_languageserver.lua b/.config/nvim/lsp/ungrammar_languageserver.lua new file mode 100644 index 0000000..dc557aa --- /dev/null +++ b/.config/nvim/lsp/ungrammar_languageserver.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/binhtran432k/ungrammar-language-features +--- Language Server for Ungrammar. +--- +--- Ungrammar Language Server can be installed via npm: +--- ```sh +--- npm i ungrammar-languageserver -g +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'ungrammar-languageserver', '--stdio' }, + filetypes = { 'ungrammar' }, + root_markers = { '.git' }, + settings = { + ungrammar = { + validate = { + enable = true, + }, + format = { + enable = true, + }, + }, + }, +} diff --git a/.config/nvim/lsp/unison.lua b/.config/nvim/lsp/unison.lua new file mode 100644 index 0000000..e7434a5 --- /dev/null +++ b/.config/nvim/lsp/unison.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown + +local util = require 'lspconfig.util' + +---@type vim.lsp.Config +return { + cmd = { 'nc', 'localhost', os.getenv 'UNISON_LSP_PORT' or '5757' }, + filetypes = { 'unison' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('*.u')(fname)) + end, + settings = {}, +} diff --git a/.config/nvim/lsp/unocss.lua b/.config/nvim/lsp/unocss.lua new file mode 100644 index 0000000..95bb105 --- /dev/null +++ b/.config/nvim/lsp/unocss.lua @@ -0,0 +1,41 @@ +---@brief +--- +--- https://github.com/xna00/unocss-language-server +--- +--- UnoCSS Language Server can be installed via npm: +--- ```sh +--- npm i unocss-language-server -g +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'unocss-language-server', '--stdio' }, + -- copied from https://github.com/unocss/unocss/blob/35297359bf61917bda499db86e3728a7ebd05d6c/packages/vscode/src/autocomplete.ts#L12-L35 + filetypes = { + 'erb', + 'haml', + 'hbs', + 'html', + 'css', + 'postcss', + 'javascript', + 'javascriptreact', + 'markdown', + 'ejs', + 'php', + 'svelte', + 'typescript', + 'typescriptreact', + 'vue-html', + 'vue', + 'sass', + 'scss', + 'less', + 'stylus', + 'astro', + 'rescript', + 'rust', + }, + workspace_required = true, + root_markers = { 'unocss.config.js', 'unocss.config.ts', 'uno.config.js', 'uno.config.ts' }, +} diff --git a/.config/nvim/lsp/uvls.lua b/.config/nvim/lsp/uvls.lua new file mode 100644 index 0000000..8987a2f --- /dev/null +++ b/.config/nvim/lsp/uvls.lua @@ -0,0 +1,23 @@ +---@brief +--- +--- https://codeberg.org/caradhras/uvls +--- Language server for UVL, written using tree sitter and rust. +--- You can install the server easily using cargo: +--- ```sh +--- git clone https://codeberg.org/caradhras/uvls +--- cd uvls +--- cargo install --path . +--- ``` +--- +--- Note: To activate properly nvim needs to know the uvl filetype. +--- You can add it via: +--- ```lua +--- vim.cmd([[au BufRead,BufNewFile *.uvl setfiletype uvl]]) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'uvls' }, + filetypes = { 'uvl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/v_analyzer.lua b/.config/nvim/lsp/v_analyzer.lua new file mode 100644 index 0000000..f46d3fc --- /dev/null +++ b/.config/nvim/lsp/v_analyzer.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/vlang/v-analyzer +--- +--- V language server. +--- +--- `v-analyzer` can be installed by following the instructions [here](https://github.com/vlang/v-analyzer#installation). + +---@type vim.lsp.Config +return { + cmd = { 'v-analyzer' }, + filetypes = { 'v', 'vsh', 'vv' }, + root_markers = { 'v.mod', '.git' }, +} diff --git a/.config/nvim/lsp/vacuum.lua b/.config/nvim/lsp/vacuum.lua new file mode 100644 index 0000000..f5c5bd0 --- /dev/null +++ b/.config/nvim/lsp/vacuum.lua @@ -0,0 +1,23 @@ +---@brief +--- +---Vacuum is the worlds fastest OpenAPI 3, OpenAPI 2 / Swagger linter and quality analysis tool. +--- +--- You can install vacuum using mason or follow the instructions here: https://github.com/daveshanley/vacuum +--- +--- The file types are not detected automatically, you can register them manually (see below) or override the filetypes: +--- +--- ```lua +--- vim.filetype.add { +--- pattern = { +--- ['openapi.*%.ya?ml'] = 'yaml.openapi', +--- ['openapi.*%.json'] = 'json.openapi', +--- }, +--- } +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vacuum', 'language-server' }, + filetypes = { 'yaml.openapi', 'json.openapi' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/vala_ls.lua b/.config/nvim/lsp/vala_ls.lua new file mode 100644 index 0000000..f67034e --- /dev/null +++ b/.config/nvim/lsp/vala_ls.lua @@ -0,0 +1,35 @@ +---@brief +--- +--- https://github.com/Prince781/vala-language-server + +local meson_matcher = function(path) + local pattern = 'meson.build' + local f = vim.fn.glob(table.concat({ path, pattern }, '/')) + if f == '' then + return nil + end + for line in io.lines(f) do + -- skip meson comments + if not line:match '^%s*#.*' then + local str = line:gsub('%s+', '') + if str ~= '' then + if str:match '^project%(' then + return path + else + break + end + end + end + end +end + +---@type vim.lsp.Config +return { + cmd = { 'vala-language-server' }, + filetypes = { 'vala', 'genie' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local root = vim.iter(vim.fs.parents(fname)):find(meson_matcher) + on_dir(root or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])) + end, +} diff --git a/.config/nvim/lsp/vale_ls.lua b/.config/nvim/lsp/vale_ls.lua new file mode 100644 index 0000000..2021efa --- /dev/null +++ b/.config/nvim/lsp/vale_ls.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/errata-ai/vale-ls +--- +--- An implementation of the Language Server Protocol (LSP) for the Vale command-line tool. + +---@type vim.lsp.Config +return { + cmd = { 'vale-ls' }, + filetypes = { 'markdown', 'text', 'tex', 'rst' }, + root_markers = { '.vale.ini' }, +} diff --git a/.config/nvim/lsp/vectorcode_server.lua b/.config/nvim/lsp/vectorcode_server.lua new file mode 100644 index 0000000..095c453 --- /dev/null +++ b/.config/nvim/lsp/vectorcode_server.lua @@ -0,0 +1,11 @@ +---@brief +--- https://github.com/Davidyz/VectorCode +--- +--- A Language Server Protocol implementation for VectorCode, a code repository indexing tool. + +---@type vim.lsp.Config +return { + cmd = { 'vectorcode-server' }, + root_dir = vim.fs.root(0, { '.vectorcode', '.git' }), + settings = {}, +} diff --git a/.config/nvim/lsp/verible.lua b/.config/nvim/lsp/verible.lua new file mode 100644 index 0000000..d2629d6 --- /dev/null +++ b/.config/nvim/lsp/verible.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/chipsalliance/verible +--- +--- A linter and formatter for verilog and SystemVerilog files. +--- +--- Release binaries can be downloaded from [here](https://github.com/chipsalliance/verible/releases) +--- and placed in a directory on PATH. +--- +--- See https://github.com/chipsalliance/verible/tree/master/verilog/tools/ls/README.md for options. + +---@type vim.lsp.Config +return { + cmd = { 'verible-verilog-ls' }, + filetypes = { 'systemverilog', 'verilog' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/veridian.lua b/.config/nvim/lsp/veridian.lua new file mode 100644 index 0000000..2e74e50 --- /dev/null +++ b/.config/nvim/lsp/veridian.lua @@ -0,0 +1,24 @@ +---@brief +--- +--- https://github.com/vivekmalneedi/veridian +--- +--- A SystemVerilog LanguageServer. +--- +--- Download the latest release for your OS from the releases page +--- +--- Install with slang feature, if C++17 compiler is available: +--- ``` +--- cargo install --git https://github.com/vivekmalneedi/veridian.git --all-features +--- ``` +--- +--- Install if C++17 compiler is not available: +--- ``` +--- cargo install --git https://github.com/vivekmalneedi/veridian.git +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'veridian' }, + filetypes = { 'systemverilog', 'verilog' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/veryl_ls.lua b/.config/nvim/lsp/veryl_ls.lua new file mode 100644 index 0000000..807dd66 --- /dev/null +++ b/.config/nvim/lsp/veryl_ls.lua @@ -0,0 +1,17 @@ +---@brief +--- +--- https://github.com/veryl-lang/veryl +--- +--- Language server for Veryl +--- +--- `veryl-ls` can be installed via `cargo`: +--- ```sh +--- cargo install veryl-ls +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'veryl-ls' }, + filetypes = { 'veryl' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/vespa_ls.lua b/.config/nvim/lsp/vespa_ls.lua new file mode 100644 index 0000000..ebad300 --- /dev/null +++ b/.config/nvim/lsp/vespa_ls.lua @@ -0,0 +1,38 @@ +---@brief +--- +--- https://github.com/vespa-engine/vespa/tree/master/integration/schema-language-server +--- +--- Vespa Language Server provides LSP features such as completion, diagnostics, +--- and go-to-definition for Vespa schema files (`.sd`), profile files (`.profile`), +--- and YQL query files (`.yql`). +--- +--- This language server requires Java 17 or higher. You can build the jar from source. +--- +--- You can override the default command by manually configuring it like this: +--- +--- ```lua +--- vim.lsp.config('vespa_ls', { +--- cmd = { 'java', '-jar', '/path/to/vespa-language-server.jar' }, +--- }) +--- ``` +--- +--- The project root is determined based on the presence of a `.git` directory. +--- +--- To make Neovim recognize the proper filetypes, add the following setting in `init.lua`: +--- +--- vim.filetype.add { +--- extension = { +--- profile = 'sd', +--- sd = 'sd', +--- yql = 'yql', +--- }, +--- } + +---@type vim.lsp.Config +return { + cmd = { 'java', '-jar', 'vespa-language-server.jar' }, + filetypes = { 'sd', 'profile', 'yql' }, + root_markers = { + '.git', + }, +} diff --git a/.config/nvim/lsp/vhdl_ls.lua b/.config/nvim/lsp/vhdl_ls.lua new file mode 100644 index 0000000..f010e70 --- /dev/null +++ b/.config/nvim/lsp/vhdl_ls.lua @@ -0,0 +1,38 @@ +---@brief +--- +--- Install vhdl_ls from https://github.com/VHDL-LS/rust_hdl and add it to path +--- +--- Configuration +--- +--- The language server needs to know your library mapping to perform full analysis of the code. For this it uses a configuration file in the TOML format named vhdl_ls.toml. +--- +--- vhdl_ls will load configuration files in the following order of priority (first to last): +--- +--- A file named .vhdl_ls.toml in the user home folder. +--- A file name from the VHDL_LS_CONFIG environment variable. +--- A file named vhdl_ls.toml in the workspace root. +--- +--- Settings in a later files overwrites those from previously loaded files. +--- +--- Example vhdl_ls.toml +--- ``` +--- # File names are either absolute or relative to the parent folder of the vhdl_ls.toml file +--- [libraries] +--- lib2.files = [ +--- 'pkg2.vhd', +--- ] +--- lib1.files = [ +--- 'pkg1.vhd', +--- 'tb_ent.vhd' +--- ] +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vhdl_ls' }, + filetypes = { 'vhd', 'vhdl' }, + root_markers = { + 'vhdl_ls.toml', + '.vhdl_ls.toml', + }, +} diff --git a/.config/nvim/lsp/vimls.lua b/.config/nvim/lsp/vimls.lua new file mode 100644 index 0000000..ba202c1 --- /dev/null +++ b/.config/nvim/lsp/vimls.lua @@ -0,0 +1,29 @@ +---@brief +--- +--- https://github.com/iamcco/vim-language-server +--- +--- You can install vim-language-server via npm: +--- ```sh +--- npm install -g vim-language-server +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'vim-language-server', '--stdio' }, + filetypes = { 'vim' }, + root_markers = { '.git' }, + init_options = { + isNeovim = true, + iskeyword = '@,48-57,_,192-255,-#', + vimruntime = '', + runtimepath = '', + diagnostic = { enable = true }, + indexes = { + runtimepath = true, + gap = 100, + count = 3, + projectRootPatterns = { 'runtime', 'nvim', '.git', 'autoload', 'plugin' }, + }, + suggest = { fromVimruntime = true, fromRuntimepath = true }, + }, +} diff --git a/.config/nvim/lsp/visualforce_ls.lua b/.config/nvim/lsp/visualforce_ls.lua new file mode 100644 index 0000000..5098447 --- /dev/null +++ b/.config/nvim/lsp/visualforce_ls.lua @@ -0,0 +1,31 @@ +---@brief +--- +--- https://github.com/forcedotcom/salesforcedx-vscode +--- +--- Language server for Visualforce. +--- +--- For manual installation, download the .vsix archive file from the +--- [forcedotcom/salesforcedx-vscode](https://github.com/forcedotcom/salesforcedx-vscode) +--- GitHub releases. Then, configure `cmd` to run the Node script at the unpacked location: +--- +--- ```lua +--- vim.lsp.config('visualforce_ls', { +--- cmd = { +--- 'node', +--- '/path/to/unpacked/archive/extension/node_modules/@salesforce/salesforcedx-visualforce-language-server/out/src/visualforceServer.js', +--- '--stdio' +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + filetypes = { 'visualforce' }, + root_markers = { 'sfdx-project.json' }, + init_options = { + embeddedLanguages = { + css = true, + javascript = true, + }, + }, +} diff --git a/.config/nvim/lsp/vls.lua b/.config/nvim/lsp/vls.lua new file mode 100644 index 0000000..f92981a --- /dev/null +++ b/.config/nvim/lsp/vls.lua @@ -0,0 +1,14 @@ +---@brief +--- +--- https://github.com/vlang/vls +--- +--- V language server. +--- +--- `v-language-server` can be installed by following the instructions [here](https://github.com/vlang/vls#installation). + +---@type vim.lsp.Config +return { + cmd = { 'v', 'ls' }, + filetypes = { 'v', 'vlang' }, + root_markers = { 'v.mod', '.git' }, +} diff --git a/.config/nvim/lsp/volar.lua b/.config/nvim/lsp/volar.lua new file mode 100644 index 0000000..040a93e --- /dev/null +++ b/.config/nvim/lsp/volar.lua @@ -0,0 +1,9 @@ +---@brief +--- +--- Renamed to [vue_ls](#vue_ls) +--- +--- +vim.deprecate('volar', 'vue_ls', '3.0.0', 'nvim-lspconfig', false) + +---@type vim.lsp.Config +return vim.lsp.config.vue_ls diff --git a/.config/nvim/lsp/vscoqtop.lua b/.config/nvim/lsp/vscoqtop.lua new file mode 100644 index 0000000..bfa8a61 --- /dev/null +++ b/.config/nvim/lsp/vscoqtop.lua @@ -0,0 +1,10 @@ +---@brief +--- +--- https://github.com/coq-community/vscoq + +---@type vim.lsp.Config +return { + cmd = { 'vscoqtop' }, + filetypes = { 'coq' }, + root_markers = { '_CoqProject', '.git' }, +} diff --git a/.config/nvim/lsp/vtsls.lua b/.config/nvim/lsp/vtsls.lua new file mode 100644 index 0000000..1265681 --- /dev/null +++ b/.config/nvim/lsp/vtsls.lua @@ -0,0 +1,96 @@ +---@brief +--- +--- https://github.com/yioneko/vtsls +--- +--- `vtsls` can be installed with npm: +--- ```sh +--- npm install -g @vtsls/language-server +--- ``` +--- +--- To configure a TypeScript project, add a +--- [`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) +--- or [`jsconfig.json`](https://code.visualstudio.com/docs/languages/jsconfig) to +--- the root of your project. +--- +--- ### Vue support +--- +--- Since v3.0.0, the Vue language server requires `vtsls` to support TypeScript. +--- +--- ``` +--- -- If you are using mason.nvim, you can get the ts_plugin_path like this +--- -- For Mason v1, +--- -- local mason_registry = require('mason-registry') +--- -- local vue_language_server_path = mason_registry.get_package('vue-language-server'):get_install_path() .. '/node_modules/@vue/language-server' +--- -- For Mason v2, +--- -- local vue_language_server_path = vim.fn.expand '$MASON/packages' .. '/vue-language-server' .. '/node_modules/@vue/language-server' +--- -- or even +--- -- local vue_language_server_path = vim.fn.stdpath('data') .. "/mason/packages/vue-language-server/node_modules/@vue/language-server" +--- local vue_language_server_path = '/path/to/@vue/language-server' +--- local vue_plugin = { +--- name = '@vue/typescript-plugin', +--- location = vue_language_server_path, +--- languages = { 'vue' }, +--- configNamespace = 'typescript', +--- } +--- vim.lsp.config('vtsls', { +--- settings = { +--- vtsls = { +--- tsserver = { +--- globalPlugins = { +--- vue_plugin, +--- }, +--- }, +--- }, +--- }, +--- filetypes = { 'typescript', 'javascript', 'javascriptreact', 'typescriptreact', 'vue' }, +--- }) +--- ``` +--- +--- - `location` MUST be defined. If the plugin is installed in `node_modules`, `location` can have any value. +--- - `languages` must include vue even if it is listed in filetypes. +--- - `filetypes` is extended here to include Vue SFC. +--- +--- You must make sure the Vue language server is setup. For example, +--- +--- ``` +--- vim.lsp.enable('vue_ls') +--- ``` +--- +--- See `vue_ls` section and https://github.com/vuejs/language-tools/wiki/Neovim for more information. +--- +--- ### Monorepo support +--- +--- `vtsls` supports monorepos by default. It will automatically find the `tsconfig.json` or `jsconfig.json` corresponding to the package you are working on. +--- This works without the need of spawning multiple instances of `vtsls`, saving memory. +--- +--- It is recommended to use the same version of TypeScript in all packages, and therefore have it available in your workspace root. The location of the TypeScript binary will be determined automatically, but only once. + +---@type vim.lsp.Config +return { + cmd = { 'vtsls', '--stdio' }, + init_options = { + hostInfo = 'neovim', + }, + filetypes = { + 'javascript', + 'javascriptreact', + 'javascript.jsx', + 'typescript', + 'typescriptreact', + 'typescript.tsx', + }, + root_dir = function(bufnr, on_dir) + -- The project root is where the LSP can be started from + -- As stated in the documentation above, this LSP supports monorepos and simple projects. + -- We select then from the project root, which is identified by the presence of a package + -- manager lock file. + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } + -- Give the root markers equal priority by wrapping them in a table + root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } + or vim.list_extend(root_markers, { '.git' }) + -- We fallback to the current working directory if no project root is found + local project_root = vim.fs.root(bufnr, root_markers) or vim.fn.getcwd() + + on_dir(project_root) + end, +} diff --git a/.config/nvim/lsp/vue_ls.lua b/.config/nvim/lsp/vue_ls.lua new file mode 100644 index 0000000..95e09e2 --- /dev/null +++ b/.config/nvim/lsp/vue_ls.lua @@ -0,0 +1,71 @@ +---@brief +--- +--- https://github.com/vuejs/language-tools/tree/master/packages/language-server +--- +--- The official language server for Vue +--- +--- It can be installed via npm: +--- ```sh +--- npm install -g @vue/language-server +--- ``` +--- +--- The language server only supports Vue 3 projects by default. +--- For Vue 2 projects, [additional configuration](https://github.com/vuejs/language-tools/blob/master/extensions/vscode/README.md?plain=1#L19) are required. +--- +--- The Vue language server works in "hybrid mode" that exclusively manages the CSS/HTML sections. +--- You need the `vtsls` server with the `@vue/typescript-plugin` plugin to support TypeScript in `.vue` files. +--- See `vtsls` section and https://github.com/vuejs/language-tools/wiki/Neovim for more information. +--- +--- NOTE: Since v3.0.0, the Vue Language Server [no longer supports takeover mode](https://github.com/vuejs/language-tools/pull/5248). + +---@type vim.lsp.Config +return { + cmd = { 'vue-language-server', '--stdio' }, + filetypes = { 'vue' }, + root_markers = { 'package.json' }, + on_init = function(client) + local retries = 0 + + ---@param _ lsp.ResponseError + ---@param result any + ---@param context lsp.HandlerContext + local function typescriptHandler(_, result, context) + local ts_client = vim.lsp.get_clients({ bufnr = context.bufnr, name = 'ts_ls' })[1] + or vim.lsp.get_clients({ bufnr = context.bufnr, name = 'vtsls' })[1] + or vim.lsp.get_clients({ bufnr = context.bufnr, name = 'typescript-tools' })[1] + + if not ts_client then + -- there can sometimes be a short delay until `ts_ls`/`vtsls` are attached so we retry for a few times until it is ready + if retries <= 10 then + retries = retries + 1 + vim.defer_fn(function() + typescriptHandler(_, result, context) + end, 100) + else + vim.notify( + 'Could not find `ts_ls`, `vtsls`, or `typescript-tools` lsp client required by `vue_ls`.', + vim.log.levels.ERROR + ) + end + return + end + + local param = unpack(result) + local id, command, payload = unpack(param) + ts_client:exec_cmd({ + title = 'vue_request_forward', -- You can give title anything as it's used to represent a command in the UI, `:h Client:exec_cmd` + command = 'typescript.tsserverRequest', + arguments = { + command, + payload, + }, + }, { bufnr = context.bufnr }, function(_, r) + local response_data = { { id, r and r.body } } + ---@diagnostic disable-next-line: param-type-mismatch + client:notify('tsserver/response', response_data) + end) + end + + client.handlers['tsserver/request'] = typescriptHandler + end, +} diff --git a/.config/nvim/lsp/wasm_language_tools.lua b/.config/nvim/lsp/wasm_language_tools.lua new file mode 100644 index 0000000..d79ae6e --- /dev/null +++ b/.config/nvim/lsp/wasm_language_tools.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/g-plane/wasm-language-tools +--- +--- WebAssembly Language Tools aims to provide and improve the editing experience of WebAssembly Text Format. +--- It also provides an out-of-the-box formatter (a.k.a. pretty printer) for WebAssembly Text Format. + +---@type vim.lsp.Config +return { + cmd = { 'wat_server' }, + filetypes = { 'wat' }, +} diff --git a/.config/nvim/lsp/wgsl_analyzer.lua b/.config/nvim/lsp/wgsl_analyzer.lua new file mode 100644 index 0000000..ed38772 --- /dev/null +++ b/.config/nvim/lsp/wgsl_analyzer.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://github.com/wgsl-analyzer/wgsl-analyzer +--- +--- `wgsl-analyzer` can be installed via `cargo`: +--- ```sh +--- cargo install --git https://github.com/wgsl-analyzer/wgsl-analyzer wgsl-analyzer +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'wgsl-analyzer' }, + filetypes = { 'wgsl' }, + root_markers = { '.git' }, + settings = {}, +} diff --git a/.config/nvim/lsp/yamlls.lua b/.config/nvim/lsp/yamlls.lua new file mode 100644 index 0000000..04e837e --- /dev/null +++ b/.config/nvim/lsp/yamlls.lua @@ -0,0 +1,80 @@ +---@brief +--- +--- https://github.com/redhat-developer/yaml-language-server +--- +--- `yaml-language-server` can be installed via `yarn`: +--- ```sh +--- yarn global add yaml-language-server +--- ``` +--- +--- To use a schema for validation, there are two options: +--- +--- 1. Add a modeline to the file. A modeline is a comment of the form: +--- +--- ``` +--- # yaml-language-server: $schema=<urlToTheSchema|relativeFilePath|absoluteFilePath}> +--- ``` +--- +--- where the relative filepath is the path relative to the open yaml file, and the absolute filepath +--- is the filepath relative to the filesystem root ('/' on unix systems) +--- +--- 2. Associated a schema url, relative , or absolute (to root of project, not to filesystem root) path to +--- the a glob pattern relative to the detected project root. Check `:checkhealth vim.lsp` to determine the resolved project +--- root. +--- +--- ```lua +--- vim.lsp.config('yamlls', { +--- ... +--- settings = { +--- yaml = { +--- ... -- other settings. note this overrides the lspconfig defaults. +--- schemas = { +--- ["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*", +--- ["../path/relative/to/file.yml"] = "/.github/workflows/*", +--- ["/path/from/root/of/project"] = "/.github/workflows/*", +--- }, +--- }, +--- } +--- }) +--- ``` +--- +--- Currently, kubernetes is special-cased in yammls, see the following upstream issues: +--- * [#211](https://github.com/redhat-developer/yaml-language-server/issues/211). +--- * [#307](https://github.com/redhat-developer/yaml-language-server/issues/307). +--- +--- To override a schema to use a specific k8s schema version (for example, to use 1.18): +--- +--- ```lua +--- vim.lsp.config('yamlls', { +--- ... +--- settings = { +--- yaml = { +--- ... -- other settings. note this overrides the lspconfig defaults. +--- schemas = { +--- ["https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.32.1-standalone-strict/all.json"] = "/*.k8s.yaml", +--- ... -- other schemas +--- }, +--- }, +--- } +--- }) +--- ``` + +---@type vim.lsp.Config +return { + cmd = { 'yaml-language-server', '--stdio' }, + filetypes = { 'yaml', 'yaml.docker-compose', 'yaml.gitlab', 'yaml.helm-values' }, + root_markers = { '.git' }, + settings = { + -- https://github.com/redhat-developer/vscode-redhat-telemetry#how-to-disable-telemetry-reporting + redhat = { telemetry = { enabled = false } }, + -- formatting disabled by default in yaml-language-server; enable it + yaml = { format = { enable = true } }, + }, + on_init = function(client) + --- https://github.com/neovim/nvim-lspconfig/pull/4016 + --- Since formatting is disabled by default if you check `client:supports_method('textDocument/formatting')` + --- during `LspAttach` it will return `false`. This hack sets the capability to `true` to facilitate + --- autocmd's which check this capability + client.server_capabilities.documentFormattingProvider = true + end, +} diff --git a/.config/nvim/lsp/yang_lsp.lua b/.config/nvim/lsp/yang_lsp.lua new file mode 100644 index 0000000..1ae15f5 --- /dev/null +++ b/.config/nvim/lsp/yang_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/TypeFox/yang-lsp +--- +--- A Language Server for the YANG data modeling language. + +---@type vim.lsp.Config +return { + cmd = { 'yang-language-server' }, + filetypes = { 'yang' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/yls.lua b/.config/nvim/lsp/yls.lua new file mode 100644 index 0000000..cfa35df --- /dev/null +++ b/.config/nvim/lsp/yls.lua @@ -0,0 +1,16 @@ +---@brief +--- +--- https://pypi.org/project/yls-yara/ +--- +--- An YLS plugin adding YARA linting capabilities. +--- +--- This plugin runs yara.compile on every save, parses the errors, and returns list of diagnostic messages. +--- +--- Language Server: https://github.com/avast/yls + +---@type vim.lsp.Config +return { + cmd = { 'yls', '-vv' }, + filetypes = { 'yar', 'yara' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/ziggy.lua b/.config/nvim/lsp/ziggy.lua new file mode 100644 index 0000000..9d01747 --- /dev/null +++ b/.config/nvim/lsp/ziggy.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://ziggy-lang.io/documentation/ziggy-lsp/ +--- +--- Language server for the Ziggy data serialization format + +---@type vim.lsp.Config +return { + cmd = { 'ziggy', 'lsp' }, + filetypes = { 'ziggy' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/ziggy_schema.lua b/.config/nvim/lsp/ziggy_schema.lua new file mode 100644 index 0000000..d12266b --- /dev/null +++ b/.config/nvim/lsp/ziggy_schema.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://ziggy-lang.io/documentation/ziggy-lsp/ +--- +--- Language server for schema files of the Ziggy data serialization format + +---@type vim.lsp.Config +return { + cmd = { 'ziggy', 'lsp', '--schema' }, + filetypes = { 'ziggy_schema' }, + root_markers = { '.git' }, +} diff --git a/.config/nvim/lsp/zk.lua b/.config/nvim/lsp/zk.lua new file mode 100644 index 0000000..3faa3ba --- /dev/null +++ b/.config/nvim/lsp/zk.lua @@ -0,0 +1,116 @@ +---@brief +--- +--- https://github.com/zk-org/zk +--- +--- A plain text note-taking assistant + +---List notes +---@param client vim.lsp.Client +---@param bufnr integer +---@param opts table +---@param action fun(path: string, title: string) +local function zk_list(client, bufnr, opts, action) + opts = vim.tbl_extend('keep', { select = { 'path', 'title' } }, opts or {}) + client:exec_cmd({ + title = 'ZkList', + command = 'zk.list', + arguments = { vim.api.nvim_buf_get_name(bufnr), opts }, + }, { bufnr = bufnr }, function(err, result) + if err ~= nil then + vim.api.nvim_echo({ { 'zk.list error\n' }, { vim.inspect(err) } }, true, {}) + return + end + if result == nil then + return + end + + vim.ui.select(result, { + format_item = function(item) + return item.title + end, + }, function(item) + if item ~= nil then + action(vim.fs.joinpath(client.root_dir, item.path), item.title) + end + end) + end) +end + +---@type vim.lsp.Config +return { + cmd = { 'zk', 'lsp' }, + filetypes = { 'markdown' }, + root_markers = { '.zk' }, + workspace_required = true, + on_attach = function(client, bufnr) + vim.api.nvim_buf_create_user_command(bufnr, 'LspZkIndex', function() + client:exec_cmd({ + title = 'ZkIndex', + command = 'zk.index', + arguments = { vim.api.nvim_buf_get_name(bufnr) }, + }, { bufnr = bufnr }, function(err, result) + if err ~= nil then + vim.api.nvim_echo({ { 'zk.index error\n' }, { vim.inspect(err) } }, true, {}) + return + end + if result ~= nil then + vim.api.nvim_echo({ { vim.inspect(result) } }, false, {}) + end + end) + end, { desc = 'ZkIndex' }) + + vim.api.nvim_buf_create_user_command(bufnr, 'LspZkList', function() + zk_list(client, bufnr, {}, function(path) + vim.cmd('edit ' .. path) + end) + end, { desc = 'ZkList' }) + + vim.api.nvim_buf_create_user_command(bufnr, 'LspZkTagList', function() + client:exec_cmd({ + title = 'ZkTagList', + command = 'zk.tag.list', + arguments = { vim.api.nvim_buf_get_name(bufnr) }, + }, { bufnr = bufnr }, function(err, result) + if err ~= nil then + vim.api.nvim_echo({ { 'zk.tag.list error\n' }, { vim.inspect(err) } }, true, {}) + return + end + if result == nil then + return + end + + vim.ui.select(result, { + format_item = function(item) + return item.name + end, + }, function(item) + if item ~= nil then + zk_list(client, bufnr, { tags = { item.name } }, function(path) + vim.cmd('edit ' .. path) + end) + end + end) + end) + end, { desc = 'ZkTagList' }) + + vim.api.nvim_buf_create_user_command(bufnr, 'LspZkNew', function(args) + local title = #args.fargs >= 1 and args.fargs[1] or '' + local dir = #args.fargs >= 2 and args.fargs[2] or '' + client:exec_cmd({ + title = 'ZkNew', + command = 'zk.new', + arguments = { + vim.api.nvim_buf_get_name(bufnr), + { title = title, dir = dir }, + }, + }, { bufnr = bufnr }, function(err, result) + if err ~= nil then + vim.api.nvim_echo({ { 'zk.new error\n' }, { vim.inspect(err) } }, true, {}) + return + end + + vim.cmd('edit ' .. result.path) + end) + end, { desc = 'ZkNew [title] [dir]', nargs = '*' }) + end, +} diff --git a/.config/nvim/lsp/zls.lua b/.config/nvim/lsp/zls.lua new file mode 100644 index 0000000..6a8dc08 --- /dev/null +++ b/.config/nvim/lsp/zls.lua @@ -0,0 +1,12 @@ +---@brief +--- https://github.com/zigtools/zls +--- +--- Zig LSP implementation + Zig Language Server + +---@type vim.lsp.Config +return { + cmd = { 'zls' }, + filetypes = { 'zig', 'zir' }, + root_markers = { 'zls.json', 'build.zig', '.git' }, + workspace_required = false, +} diff --git a/.config/nvim/lsp/zuban.lua b/.config/nvim/lsp/zuban.lua new file mode 100644 index 0000000..3fea7a2 --- /dev/null +++ b/.config/nvim/lsp/zuban.lua @@ -0,0 +1,19 @@ +---@brief +--- +--- https://zubanls.com/ +--- +--- A high-performance Python Language Server and type checker implemented in Rust, by the author of Jedi. + +---@type vim.lsp.Config +return { + cmd = { 'zuban', 'server' }, + filetypes = { 'python' }, + root_markers = { + 'pyproject.toml', + 'setup.py', + 'setup.cfg', + 'requirements.txt', + 'Pipfile', + '.git', + }, +} |