diff options
| author | anand <anand.panchdhari@gmail.com> | 2026-04-05 16:47:53 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2026-04-05 16:47:53 +0530 |
| commit | 76f6235bcd178cc5c28cc4fbf0d09fafb1f63a9b (patch) | |
| tree | 8d248824df3cacdfef1789d3663175bce48d05b5 | |
| parent | 50525874363953113aa715ea519d179e9c87bbd0 (diff) | |
some changes
368 files changed, 134 insertions, 9750 deletions
diff --git a/configuration.nix b/configuration.nix index 88ae448..3f622c6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -224,6 +224,7 @@ services.power-profiles-daemon.enable = false; # services.desktopManager.cosmic.enable = true; + services.upower.enable = true; services.gvfs.enable = true; services.tumbler.enable = true; services.openssh.enable = true; @@ -61,21 +61,8 @@ in events = [ { event = "before-sleep"; - # adding duplicated entries for the same event may not work command = lock; } - # { - # event = "after-resume"; - # command = display "on"; - # } - # { - # event = "lock"; - # command = (display "off") + "; " + lock; - # } - # { - # event = "unlock"; - # command = display "on"; - # } ]; }; programs.bash = { @@ -152,7 +139,7 @@ in unrar chromium nil - upower + lua-language-server ]; xdg.configFile = builtins.mapAttrs (name: subpath: { diff --git a/mango/config.conf b/mango/config.conf index db4a9ad..d82da64 100755 --- a/mango/config.conf +++ b/mango/config.conf @@ -275,10 +275,10 @@ layerrule=animation_type_close:zoom,layer_name:rofi # Autostart exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=wlroots >/dev/null 2>&1 & -exec-once=swww-daemon >/dev/null 2>&1 & +exec-once=awww-daemon >/dev/null 2>&1 & exec-once=nm-applet >/dev/null 2>&1 & exec-once=copyq >/dev/null 2>&1 & exec-once=dunst >/dev/null 2>&1 & exec-once=waybar -c /home/anand/dots/mango/waybar/config.jsonc -s /home/anand/dots/mango/waybar/style.css >/dev/null 2>&1 & -exec-once=swww img /home/anand/dots/mango/walls/wallpaper.jpg >/dev/null 2>&1 & +exec-once=awww img /home/anand/dots/mango/walls/wallpaper.jpg >/dev/null 2>&1 & exec-once-once=xrdb .Xresources >/dev/null 2>&1 & diff --git a/nvim/init.lua b/nvim/init.lua index 3f6c3b5..7e16069 100755 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -31,106 +31,43 @@ vim.api.nvim_create_autocmd('LspAttach', { end, }) --- Clone 'mini.nvim' manually in a way that it gets managed by 'mini.deps' -local path_package = vim.fn.stdpath('data') .. '/site/' -local mini_path = path_package .. 'pack/deps/start/mini.nvim' -if not vim.loop.fs_stat(mini_path) then - vim.cmd('echo "Installing `mini.nvim`" | redraw') - local clone_cmd = { - 'git', 'clone', '--filter=blob:none', - 'https://github.com/nvim-mini/mini.nvim', mini_path - } - vim.fn.system(clone_cmd) - vim.cmd('packadd mini.nvim | helptags ALL') - vim.cmd('echo "Installed `mini.nvim`" | redraw') -end - vim.api.nvim_create_autocmd("TextYankPost", { callback = function() vim.highlight.on_yank() end, }) --- Godot --- Function to find Godot project root directory -local function find_godot_project_root() - local cwd = vim.fn.getcwd() - local search_paths = { '', '/..' } - - for _, relative_path in ipairs(search_paths) do - local project_file = cwd .. relative_path .. '/project.godot' - if vim.uv.fs_stat(project_file) then - return cwd .. relative_path - end - end - - return nil -end - --- Function to check if server is already running -local function is_server_running(project_path) - local server_pipe = project_path .. '/server.pipe' - return vim.uv.fs_stat(server_pipe) ~= nil -end +vim.cmd("packadd nvim.undotree") +vim.keymap.set("n", "<leader>u", require("undotree").open) --- Function to start Godot server if needed -local function start_godot_server_if_needed() - local godot_project_path = find_godot_project_root() - - if godot_project_path and not is_server_running(godot_project_path) then - vim.fn.serverstart(godot_project_path .. '/server.pipe') - return true - end - - return false -end +vim.pack.add { 'https://github.com/stevearc/dressing.nvim' } -- Dependency for flutter tools +vim.pack.add { 'https://github.com/nvim-lua/plenary.nvim' } -- Dependency for flutter tools +vim.pack.add { 'https://github.com/nvim-flutter/flutter-tools.nvim' } +vim.pack.add { 'https://github.com/nvim-mini/mini.icons' } -- Dependency for mini.completion +vim.pack.add { 'https://github.com/nvim-mini/mini.snippets' } -- Dependency for mini.completion --- Main execution -start_godot_server_if_needed() +vim.pack.add { 'https://github.com/lewis6991/gitsigns.nvim' } +vim.pack.add { 'https://github.com/nvim-treesitter/nvim-treesitter' } +vim.pack.add { 'https://github.com/OXY2DEV/markview.nvim' } +vim.pack.add { 'https://github.com/nvim-mini/mini.completion' } +vim.pack.add { 'https://github.com/nvim-mini/mini.surround' } +vim.pack.add { 'https://github.com/nvim-mini/mini.ai' } +vim.pack.add { 'https://github.com/nvim-mini/mini.move' } +vim.pack.add { 'https://github.com/nvim-mini/mini.files' } +vim.pack.add { 'https://github.com/nvim-treesitter/nvim-treesitter-context' } +vim.pack.add { 'https://github.com/echasnovski/mini.pick' } +vim.pack.add { 'https://github.com/onsails/diaglist.nvim' } +vim.pack.add { 'https://github.com/HakonHarnes/img-clip.nvim' } +vim.pack.add { 'https://github.com/akinsho/toggleterm.nvim' } +vim.pack.add { 'https://github.com/mason-org/mason.nvim' } +vim.pack.add { 'https://github.com/jghauser/follow-md-links.nvim' } +vim.pack.add { 'https://github.com/rachartier/tiny-inline-diagnostic.nvim' } -require('mini.deps').setup({ path = { package = path_package } }) +vim.pack.add { "https://github.com/MunifTanjim/nui.nvim" } -- Dependency for laravel.nvim +vim.pack.add { "https://github.com/nvim-lua/plenary.nvim" } -- Dependency for laravel.nvim +vim.pack.add { 'https://github.com/adibhanna/laravel.nvim' } -local add = require('mini.deps').add -add({ - source = 'nvim-flutter/flutter-tools.nvim', - depends = { - 'stevearc/dressing.nvim', - 'nvim-lua/plenary.nvim' - } -}) -add({ source = 'lewis6991/gitsigns.nvim' }) -add({ source = 'tpope/vim-fugitive' }) -add({ source = 'folke/tokyonight.nvim' }) -add({ source = 'nvim-treesitter/nvim-treesitter' }) -add({ source = 'OXY2DEV/markview.nvim' }) -add({ - source = 'nvim-mini/mini.completion', - dependencies = { - 'nvim-mini/mini.icons', - 'nvim-mini/mini-snippets' - } -}) -add({ source = 'nvim-mini/mini.surround' }) -add({ source = 'nvim-mini/mini.ai' }) -add({ source = 'nvim-mini/mini.move' }) -add({ source = 'nvim-mini/mini.files' }) -add({ source = 'nvim-treesitter/nvim-treesitter-context' }) -add({ source = 'echasnovski/mini.pick' }) -add({ source = 'onsails/diaglist.nvim' }) -add({ source = 'mbbill/undotree' }) -add({ source = 'HakonHarnes/img-clip.nvim' }) -add({ source = 'akinsho/toggleterm.nvim' }) -add({ source = 'mason-org/mason.nvim' }) -add({ source = 'neovim/nvim-lspconfig' }) -add({ source = 'jghauser/follow-md-links.nvim' }) -add({ source = 'rachartier/tiny-inline-diagnostic.nvim' }) -add({ - source = 'adibhanna/laravel.nvim', - dependencies = { - "MunifTanjim/nui.nvim", - "nvim-lua/plenary.nvim" - } -}) +vim.pack.add { 'https://github.com/neovim/nvim-lspconfig' } -- Plugin Setup require('mason').setup() @@ -148,7 +85,7 @@ require('gitsigns').setup() require("laravel").setup() require 'treesitter-context'.setup { enable = true } -vim.cmd.colorscheme('tokyonight-night') +vim.cmd.colorscheme('catppuccin') vim.cmd.hi("StatusLine guibg=NONE") vim.api.nvim_create_autocmd("BufWritePre", { @@ -156,6 +93,8 @@ vim.api.nvim_create_autocmd("BufWritePre", { callback = function() vim.lsp.buf.format() end, }) +vim.lsp.enable("lua_ls") + -- Keymaps vim.keymap.set("i", "", "<C-S-H>", { desc = "Solution for xterm" }) vim.keymap.set({ "n", "v" }, "j", "gj", { desc = "Personal preference" }) @@ -163,7 +102,6 @@ vim.keymap.set({ "n", "v" }, "k", "gk", { desc = "Personal preference" }) vim.keymap.set("n", "<leader><space>e", "<cmd>lua MiniFiles.open()<CR>", { desc = 'Open Mini.Files' }) vim.keymap.set("n", "<leader>cw", require('diaglist').open_all_diagnostics, { desc = 'Open diagnostics' }) vim.keymap.set("n", "<leader>cl", "<cmd>cclose<cr>", { desc = 'Open diagnostics' }) -vim.keymap.set('n', '<leader><leader>u', vim.cmd.UndotreeToggle, { desc = 'Toggle undo tree' }) vim.keymap.set("n", "<leader>pv", "<cmd>Ex<CR>", { desc = "Open netrw" }) vim.keymap.set("n", "<leader>ff", "<cmd>Pick files<CR>", { desc = "Open file Picker" }) vim.keymap.set("n", "<leader>fg", "<cmd>Pick grep_live<CR>", { desc = "Open Live Grep" }) @@ -186,25 +124,4 @@ vim.keymap.set("n", "gx", function() vim.fn.jobstart({ "xdg-open", url }, { detach = true }) end, { desc = "Open URL with xdg-open" }) --- vim.keymap.set("i", "<C-e>", function() --- if vim.fn.pumvisible() == 1 then --- return "<C-y>" --- else --- return "<C-e>" --- end --- end, { expr = true, silent = true })a - -vim.api.nvim_create_autocmd('LspAttach', { - callback = function(ev) - local client = vim.lsp.get_client_by_id(ev.data.client_id) - if client ~= nil and client:supports_method('textDocument/completion') then - vim.opt.completeopt = { 'menu', 'menuone', 'noselect', 'fuzzy', 'popup' } - vim.lsp.completion.enable(true, client.id, ev.buf, { autotrigger = true }) - vim.keymap.set('i', '<C-Space>', function() - vim.lsp.completion.get() - end, { desc = 'Start Completion' }) - end - end, -}) - vim.diagnostic.config({ virtual_text = false }) diff --git a/nvim/lsp/ada_ls.lua b/nvim/lsp/ada_ls.lua deleted file mode 100755 index ff43d9a..0000000 --- a/nvim/lsp/ada_ls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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' - -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/nvim/lsp/agda_ls.lua b/nvim/lsp/agda_ls.lua deleted file mode 100755 index b10f14e..0000000 --- a/nvim/lsp/agda_ls.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@brief ---- ---- https://github.com/agda/agda-language-server ---- ---- Language Server for Agda. - -local util = require 'lspconfig.util' - -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/nvim/lsp/aiken.lua b/nvim/lsp/aiken.lua deleted file mode 100755 index f0054c2..0000000 --- a/nvim/lsp/aiken.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -return { - cmd = { 'aiken', 'lsp' }, - filetypes = { 'aiken' }, - root_markers = { 'aiken.toml', '.git' }, -} diff --git a/nvim/lsp/air.lua b/nvim/lsp/air.lua deleted file mode 100755 index 8f90a73..0000000 --- a/nvim/lsp/air.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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. -return { - cmd = { 'air', 'language-server' }, - filetypes = { 'r' }, - root_markers = { 'air.toml', '.air.toml', '.git' }, -} diff --git a/nvim/lsp/alloy_ls.lua b/nvim/lsp/alloy_ls.lua deleted file mode 100755 index e1fe24e..0000000 --- a/nvim/lsp/alloy_ls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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. -return { - cmd = { 'alloy', 'lsp' }, - filetypes = { 'alloy' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/anakin_language_server.lua b/nvim/lsp/anakin_language_server.lua deleted file mode 100755 index a993496..0000000 --- a/nvim/lsp/anakin_language_server.lua +++ /dev/null @@ -1,69 +0,0 @@ ----@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 -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/nvim/lsp/angularls.lua b/nvim/lsp/angularls.lua deleted file mode 100755 index f527e09..0000000 --- a/nvim/lsp/angularls.lua +++ /dev/null @@ -1,84 +0,0 @@ ----@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(',') - -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/nvim/lsp/ansiblels.lua b/nvim/lsp/ansiblels.lua deleted file mode 100755 index 75f03ac..0000000 --- a/nvim/lsp/ansiblels.lua +++ /dev/null @@ -1,36 +0,0 @@ ----@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 ---- ``` -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/nvim/lsp/antlersls.lua b/nvim/lsp/antlersls.lua deleted file mode 100755 index fe01ea8..0000000 --- a/nvim/lsp/antlersls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://www.npmjs.com/package/antlers-language-server ---- ---- `antlersls` can be installed via `npm`: ---- ```sh ---- npm install -g antlers-language-server ---- ``` -return { - cmd = { 'antlersls', '--stdio' }, - filetypes = { 'html', 'antlers' }, - root_markers = { 'composer.json' }, -} diff --git a/nvim/lsp/arduino_language_server.lua b/nvim/lsp/arduino_language_server.lua deleted file mode 100755 index 0b47a70..0000000 --- a/nvim/lsp/arduino_language_server.lua +++ /dev/null @@ -1,90 +0,0 @@ ----@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' - -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/nvim/lsp/asm_lsp.lua b/nvim/lsp/asm_lsp.lua deleted file mode 100755 index 368fa9c..0000000 --- a/nvim/lsp/asm_lsp.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -return { - cmd = { 'asm-lsp' }, - filetypes = { 'asm', 'vmasm' }, - root_markers = { '.asm-lsp.toml', '.git' }, -} diff --git a/nvim/lsp/ast_grep.lua b/nvim/lsp/ast_grep.lua deleted file mode 100755 index 6ba3d7c..0000000 --- a/nvim/lsp/ast_grep.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@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 ---- ``` -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 - 'c', - 'cpp', - 'rust', - 'go', - 'java', - 'python', - 'javascript', - 'javascriptreact', - 'javascript.jsx', - 'typescript', - 'typescriptreact', - 'typescript.tsx', - 'html', - 'css', - 'kotlin', - 'dart', - 'lua', - }, - root_markers = { 'sgconfig.yaml', 'sgconfig.yml' }, -} diff --git a/nvim/lsp/astro.lua b/nvim/lsp/astro.lua deleted file mode 100755 index 6f33439..0000000 --- a/nvim/lsp/astro.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@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' - -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/nvim/lsp/atlas.lua b/nvim/lsp/atlas.lua deleted file mode 100755 index fbcbab8..0000000 --- a/nvim/lsp/atlas.lua +++ /dev/null @@ -1,64 +0,0 @@ ----@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') ---- ``` ---- -return { - cmd = { 'atlas', 'tool', 'lsp', '--stdio' }, - filetypes = { - 'atlas-*', - }, - root_markers = { 'atlas.hcl' }, -} diff --git a/nvim/lsp/autohotkey_lsp.lua b/nvim/lsp/autohotkey_lsp.lua deleted file mode 100755 index eac26a7..0000000 --- a/nvim/lsp/autohotkey_lsp.lua +++ /dev/null @@ -1,50 +0,0 @@ ----@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 - -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/nvim/lsp/autotools_ls.lua b/nvim/lsp/autotools_ls.lua deleted file mode 100755 index caa17b2..0000000 --- a/nvim/lsp/autotools_ls.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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' } - -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/nvim/lsp/awk_ls.lua b/nvim/lsp/awk_ls.lua deleted file mode 100755 index 1c609cd..0000000 --- a/nvim/lsp/awk_ls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/Beaglefoot/awk-language-server/ ---- ---- `awk-language-server` can be installed via `npm`: ---- ```sh ---- npm install -g awk-language-server ---- ``` - -return { - cmd = { 'awk-language-server' }, - filetypes = { 'awk' }, -} diff --git a/nvim/lsp/azure_pipelines_ls.lua b/nvim/lsp/azure_pipelines_ls.lua deleted file mode 100755 index ade47eb..0000000 --- a/nvim/lsp/azure_pipelines_ls.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@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`. -return { - cmd = { 'azure-pipelines-language-server', '--stdio' }, - filetypes = { 'yaml' }, - root_markers = { 'azure-pipelines.yml' }, - settings = {}, -} diff --git a/nvim/lsp/bacon_ls.lua b/nvim/lsp/bacon_ls.lua deleted file mode 100755 index b3b271f..0000000 --- a/nvim/lsp/bacon_ls.lua +++ /dev/null @@ -1,45 +0,0 @@ ----@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, ---- } ---- ``` -return { - cmd = { 'bacon-ls' }, - filetypes = { 'rust' }, - root_markers = { '.bacon-locations', 'Cargo.toml' }, - init_options = {}, -} diff --git a/nvim/lsp/ballerina.lua b/nvim/lsp/ballerina.lua deleted file mode 100755 index 55d3369..0000000 --- a/nvim/lsp/ballerina.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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. -return { - cmd = { 'bal', 'start-language-server' }, - filetypes = { 'ballerina' }, - root_markers = { 'Ballerina.toml' }, -} diff --git a/nvim/lsp/basedpyright.lua b/nvim/lsp/basedpyright.lua deleted file mode 100755 index 2ec5944..0000000 --- a/nvim/lsp/basedpyright.lua +++ /dev/null @@ -1,59 +0,0 @@ ----@brief ---- ---- https://detachhead.github.io/basedpyright ---- ---- `basedpyright`, a static type checker and language server for python - -local function set_python_path(path) - 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 - -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() - client:exec_cmd({ - command = 'basedpyright.organizeimports', - arguments = { vim.uri_from_bufnr(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/nvim/lsp/bashls.lua b/nvim/lsp/bashls.lua deleted file mode 100755 index 79d86d3..0000000 --- a/nvim/lsp/bashls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@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. -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/nvim/lsp/basics_ls.lua b/nvim/lsp/basics_ls.lua deleted file mode 100755 index a932d22..0000000 --- a/nvim/lsp/basics_ls.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@brief ---- ---- https://github.com/antonk52/basics-language-server/ ---- ---- Buffer, path, and snippet completion ---- ---- ```sh ---- npm install -g basics-language-server ---- ``` -return { - cmd = { 'basics-language-server' }, - settings = { - buffer = { - enable = true, - minCompletionLength = 4, - }, - path = { - enable = true, - }, - snippet = { - enable = false, - sources = {}, - }, - }, -} diff --git a/nvim/lsp/bazelrc_lsp.lua b/nvim/lsp/bazelrc_lsp.lua deleted file mode 100755 index bf17b5a..0000000 --- a/nvim/lsp/bazelrc_lsp.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@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', ---- }, ---- } ---- ``` -return { - cmd = { 'bazelrc-lsp', 'lsp' }, - filetypes = { 'bazelrc' }, - root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' }, -} diff --git a/nvim/lsp/beancount.lua b/nvim/lsp/beancount.lua deleted file mode 100755 index d14ae25..0000000 --- a/nvim/lsp/beancount.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://github.com/polarmutex/beancount-language-server#installation ---- ---- See https://github.com/polarmutex/beancount-language-server#configuration for configuration options -return { - cmd = { 'beancount-language-server', '--stdio' }, - filetypes = { 'beancount', 'bean' }, - root_markers = { '.git' }, - init_options = {}, -} diff --git a/nvim/lsp/bicep.lua b/nvim/lsp/bicep.lua deleted file mode 100755 index fe3ddb1..0000000 --- a/nvim/lsp/bicep.lua +++ /dev/null @@ -1,38 +0,0 @@ ----@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) ---- ``` -return { - filetypes = { 'bicep', 'bicep-params' }, - root_markers = { '.git' }, - init_options = {}, -} diff --git a/nvim/lsp/biome.lua b/nvim/lsp/biome.lua deleted file mode 100755 index d58ae46..0000000 --- a/nvim/lsp/biome.lua +++ /dev/null @@ -1,46 +0,0 @@ ----@brief ---- https://biomejs.dev ---- ---- Toolchain of the web. [Successor of Rome](https://biomejs.dev/blog/annoucing-biome). ---- ---- ```sh ---- npm install [-g] @biomejs/biome ---- ``` - -local util = require 'lspconfig.util' - -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(_, on_dir) - -- To support monorepos, biome recommends starting the search for the root from cwd - -- https://biomejs.dev/guides/big-projects/#use-multiple-configuration-files - local cwd = vim.fn.getcwd() - local root_files = { 'biome.json', 'biome.jsonc' } - root_files = util.insert_package_json(root_files, 'biome', cwd) - local root_dir = vim.fs.dirname(vim.fs.find(root_files, { path = cwd, upward = true })[1]) - on_dir(root_dir) - end, -} diff --git a/nvim/lsp/bitbake_language_server.lua b/nvim/lsp/bitbake_language_server.lua deleted file mode 100755 index 3abdb8b..0000000 --- a/nvim/lsp/bitbake_language_server.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- 🛠️ bitbake language server -return { - cmd = { 'bitbake-language-server' }, - filetypes = { 'bitbake' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/blueprint_ls.lua b/nvim/lsp/blueprint_ls.lua deleted file mode 100755 index f7c75ba..0000000 --- a/nvim/lsp/blueprint_ls.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@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. -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/nvim/lsp/bqls.lua b/nvim/lsp/bqls.lua deleted file mode 100755 index 6ebc885..0000000 --- a/nvim/lsp/bqls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@brief ---- ---- https://github.com/kitagry/bqls ---- ---- The `bqls` BigQuery language server can be installed by running: ---- ---- ```sh ---- $ go install github.com/kitagry/bqls@latest ---- ``` -return { - cmd = { 'bqls' }, - filetypes = { 'sql' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/bright_script.lua b/nvim/lsp/bright_script.lua deleted file mode 100755 index ead26fc..0000000 --- a/nvim/lsp/bright_script.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/RokuCommunity/brighterscript ---- ---- `brightscript` can be installed via `npm`: ---- ```sh ---- npm install -g brighterscript ---- ``` -return { - cmd = { 'bsc', '--lsp', '--stdio' }, - filetypes = { 'brs' }, - root_markers = { 'makefile', 'Makefile', '.git' }, -} diff --git a/nvim/lsp/bsl_ls.lua b/nvim/lsp/bsl_ls.lua deleted file mode 100755 index d96bf16..0000000 --- a/nvim/lsp/bsl_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/1c-syntax/bsl-language-server ---- ---- Language Server Protocol implementation for 1C (BSL) - 1C:Enterprise 8 and OneScript languages. - -return { - filetypes = { 'bsl', 'os' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/buck2.lua b/nvim/lsp/buck2.lua deleted file mode 100755 index 8c64746..0000000 --- a/nvim/lsp/buck2.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@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 ]] ---- ``` -return { - cmd = { 'buck2', 'lsp' }, - filetypes = { 'bzl' }, - root_markers = { '.buckconfig' }, -} diff --git a/nvim/lsp/buddy_ls.lua b/nvim/lsp/buddy_ls.lua deleted file mode 100755 index 55f51ac..0000000 --- a/nvim/lsp/buddy_ls.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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) -return { - cmd = { 'buddy-lsp-server' }, - filetypes = { 'mlir' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/buf_ls.lua b/nvim/lsp/buf_ls.lua deleted file mode 100755 index 16f5dc1..0000000 --- a/nvim/lsp/buf_ls.lua +++ /dev/null @@ -1,12 +0,0 @@ ---- @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 - -return { - cmd = { 'buf', 'beta', 'lsp', '--timeout=0', '--log-format=text' }, - filetypes = { 'proto' }, - root_markers = { 'buf.yaml', '.git' }, -} diff --git a/nvim/lsp/bufls.lua b/nvim/lsp/bufls.lua deleted file mode 100755 index cdde4e4..0000000 --- a/nvim/lsp/bufls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 -return { - cmd = { 'bufls', 'serve' }, - filetypes = { 'proto' }, - root_markers = { 'buf.work.yaml', '.git' }, -} diff --git a/nvim/lsp/bzl.lua b/nvim/lsp/bzl.lua deleted file mode 100755 index 565f7cb..0000000 --- a/nvim/lsp/bzl.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://bzl.io/ ---- ---- https://docs.stack.build/docs/cli/installation ---- ---- https://docs.stack.build/docs/vscode/starlark-language-server -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/nvim/lsp/c3_lsp.lua b/nvim/lsp/c3_lsp.lua deleted file mode 100755 index a2c8dc2..0000000 --- a/nvim/lsp/c3_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/pherrymason/c3-lsp ---- ---- Language Server for c3. -return { - cmd = { 'c3lsp' }, - root_markers = { 'project.json', 'manifest.json', '.git' }, - filetypes = { 'c3', 'c3i' }, -} diff --git a/nvim/lsp/cairo_ls.lua b/nvim/lsp/cairo_ls.lua deleted file mode 100755 index 69b508f..0000000 --- a/nvim/lsp/cairo_ls.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 !* -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/nvim/lsp/ccls.lua b/nvim/lsp/ccls.lua deleted file mode 100755 index 0b72d6d..0000000 --- a/nvim/lsp/ccls.lua +++ /dev/null @@ -1,52 +0,0 @@ ----@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 - -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/nvim/lsp/cds_lsp.lua b/nvim/lsp/cds_lsp.lua deleted file mode 100755 index b1832e6..0000000 --- a/nvim/lsp/cds_lsp.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@brief ---- ---- https://cap.cloud.sap/docs/ ---- ---- `cds-lsp` can be installed via `npm`: ---- ---- ```sh ---- npm i -g @sap/cds-lsp ---- ``` -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/nvim/lsp/circom-lsp.lua b/nvim/lsp/circom-lsp.lua deleted file mode 100755 index 2a6c3a3..0000000 --- a/nvim/lsp/circom-lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- [Circom Language Server](https://github.com/rubydusa/circom-lsp) ---- ---- `circom-lsp`, the language server for the Circom language. -return { - cmd = { 'circom-lsp' }, - filetypes = { 'circom' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/clangd.lua b/nvim/lsp/clangd.lua deleted file mode 100755 index a444377..0000000 --- a/nvim/lsp/clangd.lua +++ /dev/null @@ -1,99 +0,0 @@ ----@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) - local method_name = 'textDocument/switchSourceHeader' - local client = vim.lsp.get_clients({ bufnr = bufnr, name = 'clangd' })[1] - if not client 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) - 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() - local bufnr = vim.api.nvim_get_current_buf() - local clangd_client = vim.lsp.get_clients({ bufnr = bufnr, name = 'clangd' })[1] - if not clangd_client or not clangd_client.supports_method 'textDocument/symbolInfo' 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, clangd_client.offset_encoding) - clangd_client.request('textDocument/symbolInfo', params, function(err, res) - if err or #res == 0 then - -- Clangd always returns an error, there is not 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, - border = 'single', - title = 'Symbol Info', - }) - end, bufnr) -end - ----@class ClangdInitializeResult: lsp.InitializeResult ----@field offsetEncoding? string - -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 client vim.lsp.Client - ---@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(_, bufnr) - vim.api.nvim_buf_create_user_command(bufnr, 'LspClangdSwitchSourceHeader', function() - switch_source_header(bufnr) - end, { desc = 'Switch between source/header' }) - - vim.api.nvim_buf_create_user_command(bufnr, 'LspClangdShowSymbolInfo', function() - symbol_info() - end, { desc = 'Show symbol info' }) - end, -} diff --git a/nvim/lsp/clarinet.lua b/nvim/lsp/clarinet.lua deleted file mode 100755 index 2c25f6a..0000000 --- a/nvim/lsp/clarinet.lua +++ /dev/null @@ -1,9 +0,0 @@ ----@brief ---- https://github.com/hirosystems/clarinet ---- ---- Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain. -return { - cmd = { 'clarinet', 'lsp' }, - filetypes = { 'clar', 'clarity' }, - root_markers = { 'Clarinet.toml' }, -} diff --git a/nvim/lsp/clojure_lsp.lua b/nvim/lsp/clojure_lsp.lua deleted file mode 100755 index e3aef9d..0000000 --- a/nvim/lsp/clojure_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/clojure-lsp/clojure-lsp ---- ---- Clojure Language Server -return { - cmd = { 'clojure-lsp' }, - filetypes = { 'clojure', 'edn' }, - root_markers = { 'project.clj', 'deps.edn', 'build.boot', 'shadow-cljs.edn', '.git', 'bb.edn' }, -} diff --git a/nvim/lsp/cmake.lua b/nvim/lsp/cmake.lua deleted file mode 100755 index fc05aed..0000000 --- a/nvim/lsp/cmake.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/regen100/cmake-language-server ---- ---- CMake LSP Implementation -return { - cmd = { 'cmake-language-server' }, - filetypes = { 'cmake' }, - root_markers = { 'CMakePresets.json', 'CTestConfig.cmake', '.git', 'build', 'cmake' }, - init_options = { - buildDirectory = 'build', - }, -} diff --git a/nvim/lsp/cobol_ls.lua b/nvim/lsp/cobol_ls.lua deleted file mode 100755 index 0a4f4a9..0000000 --- a/nvim/lsp/cobol_ls.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- Cobol language support -return { - cmd = { 'cobol-language-support' }, - filetypes = { 'cobol' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/codebook.lua b/nvim/lsp/codebook.lua deleted file mode 100755 index 8a8700b..0000000 --- a/nvim/lsp/codebook.lua +++ /dev/null @@ -1,32 +0,0 @@ ----@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`. ---- -return { - cmd = { 'codebook-lsp', 'serve' }, - filetypes = { - 'c', - 'css', - 'go', - 'haskell', - 'html', - 'javascript', - 'javascriptreact', - 'markdown', - 'python', - 'php', - 'ruby', - 'rust', - 'toml', - 'text', - 'typescript', - 'typescriptreact', - }, - root_markers = { '.git', 'codebook.toml', '.codebook.toml' }, -} diff --git a/nvim/lsp/coffeesense.lua b/nvim/lsp/coffeesense.lua deleted file mode 100755 index 0aface5..0000000 --- a/nvim/lsp/coffeesense.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@brief ---- ---- https://github.com/phil294/coffeesense ---- ---- CoffeeSense Language Server ---- `coffeesense-language-server` can be installed via `npm`: ---- ```sh ---- npm install -g coffeesense-language-server ---- ``` -return { - cmd = { 'coffeesense-language-server', '--stdio' }, - filetypes = { 'coffee' }, - root_markers = { 'package.json' }, -} diff --git a/nvim/lsp/contextive.lua b/nvim/lsp/contextive.lua deleted file mode 100755 index 5cb2544..0000000 --- a/nvim/lsp/contextive.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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. -return { - cmd = { 'Contextive.LanguageServer' }, - root_markers = { '.contextive', '.git' }, -} diff --git a/nvim/lsp/coq_lsp.lua b/nvim/lsp/coq_lsp.lua deleted file mode 100755 index a8d6eb8..0000000 --- a/nvim/lsp/coq_lsp.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- https://github.com/ejgallego/coq-lsp/ -return { - cmd = { 'coq-lsp' }, - filetypes = { 'coq' }, - root_markers = { '_CoqProject', '.git' }, -} diff --git a/nvim/lsp/crystalline.lua b/nvim/lsp/crystalline.lua deleted file mode 100755 index 1b1ed5f..0000000 --- a/nvim/lsp/crystalline.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/elbywan/crystalline ---- ---- Crystal language server. -return { - cmd = { 'crystalline' }, - filetypes = { 'crystal' }, - root_markers = { 'shard.yml', '.git' }, -} diff --git a/nvim/lsp/csharp_ls.lua b/nvim/lsp/csharp_ls.lua deleted file mode 100755 index e44bc81..0000000 --- a/nvim/lsp/csharp_ls.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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' - -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/nvim/lsp/cspell_ls.lua b/nvim/lsp/cspell_ls.lua deleted file mode 100755 index 3588a74..0000000 --- a/nvim/lsp/cspell_ls.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@brief ---- ---- [cspell language server](https://github.com/vlabo/cspell-lsp) ---- -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/nvim/lsp/css_variables.lua b/nvim/lsp/css_variables.lua deleted file mode 100755 index 1ee9c2b..0000000 --- a/nvim/lsp/css_variables.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@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 ---- ``` -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/nvim/lsp/cssls.lua b/nvim/lsp/cssls.lua deleted file mode 100755 index 9d69f40..0000000 --- a/nvim/lsp/cssls.lua +++ /dev/null @@ -1,32 +0,0 @@ ----@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, ---- }) ---- ``` -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/nvim/lsp/cssmodules_ls.lua b/nvim/lsp/cssmodules_ls.lua deleted file mode 100755 index 7837d32..0000000 --- a/nvim/lsp/cssmodules_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'cssmodules-language-server' }, - filetypes = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact' }, - root_markers = { 'package.json' }, -} diff --git a/nvim/lsp/cucumber_language_server.lua b/nvim/lsp/cucumber_language_server.lua deleted file mode 100755 index 8ca784d..0000000 --- a/nvim/lsp/cucumber_language_server.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'cucumber-language-server', '--stdio' }, - filetypes = { 'cucumber' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/cue.lua b/nvim/lsp/cue.lua deleted file mode 100755 index d2760f9..0000000 --- a/nvim/lsp/cue.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/cue-lang/cue ---- ---- CUE makes it easy to validate data, write schemas, and ensure configurations align with policies. -return { - cmd = { 'cue', 'lsp' }, - filetypes = { 'cue' }, - root_markers = { 'cue.mod', '.git' }, -} diff --git a/nvim/lsp/custom_elements_ls.lua b/nvim/lsp/custom_elements_ls.lua deleted file mode 100755 index 59acf70..0000000 --- a/nvim/lsp/custom_elements_ls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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" ---- ] ---- } ---- ``` -return { - init_options = { hostInfo = 'neovim' }, - cmd = { 'custom-elements-languageserver', '--stdio' }, - root_dir = { 'tsconfig.json', 'package.json', 'jsconfig.json', '.git' }, -} diff --git a/nvim/lsp/cypher_ls.lua b/nvim/lsp/cypher_ls.lua deleted file mode 100755 index 5c41a93..0000000 --- a/nvim/lsp/cypher_ls.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'cypher-language-server', '--stdio' }, - filetypes = { 'cypher' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/daedalus_ls.lua b/nvim/lsp/daedalus_ls.lua deleted file mode 100755 index 95da1eb..0000000 --- a/nvim/lsp/daedalus_ls.lua +++ /dev/null @@ -1,26 +0,0 @@ ---- @brief ---- ---- DaedalusLanguageServer - -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/nvim/lsp/dafny.lua b/nvim/lsp/dafny.lua deleted file mode 100755 index fbabe83..0000000 --- a/nvim/lsp/dafny.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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>"}`. -return { - cmd = { 'dafny', 'server' }, - filetypes = { 'dfy', 'dafny' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/dagger.lua b/nvim/lsp/dagger.lua deleted file mode 100755 index 352b569..0000000 --- a/nvim/lsp/dagger.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/dagger/cuelsp ---- ---- Dagger's lsp server for cuelang. -return { - cmd = { 'cuelsp' }, - filetypes = { 'cue' }, - root_markers = { 'cue.mod', '.git' }, -} diff --git a/nvim/lsp/dartls.lua b/nvim/lsp/dartls.lua deleted file mode 100755 index db8684e..0000000 --- a/nvim/lsp/dartls.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@brief ---- ---- https://github.com/dart-lang/sdk/tree/master/pkg/analysis_server/tool/lsp_spec ---- ---- Language server for dart. -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/nvim/lsp/dcmls.lua b/nvim/lsp/dcmls.lua deleted file mode 100755 index 83b6a97..0000000 --- a/nvim/lsp/dcmls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://dcm.dev/ ---- ---- Language server for DCM analyzer. -return { - cmd = { 'dcm', 'start-server', '--client=neovim' }, - filetypes = { 'dart' }, - root_markers = { 'pubspec.yaml' }, -} diff --git a/nvim/lsp/debputy.lua b/nvim/lsp/debputy.lua deleted file mode 100755 index 7aa71bf..0000000 --- a/nvim/lsp/debputy.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://salsa.debian.org/debian/debputy ---- ---- Language Server for Debian packages. -return { - cmd = { 'debputy', 'lsp', 'server' }, - filetypes = { 'debcontrol', 'debcopyright', 'debchangelog', 'autopkgtest', 'make', 'yaml' }, - root_markers = { 'debian' }, -} diff --git a/nvim/lsp/denols.lua b/nvim/lsp/denols.lua deleted file mode 100755 index c6052ef..0000000 --- a/nvim/lsp/denols.lua +++ /dev/null @@ -1,110 +0,0 @@ ----@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 - -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, _result, ctx) - if err then - local uri = ctx.params.arguments[2] - vim.api.nvim_err_writeln('cache command failed for ' .. vim.uri_to_fname(uri)) - end - end) - end, { - desc = 'Cache a module and all of its dependencies.', - }) - end, -} diff --git a/nvim/lsp/dhall_lsp_server.lua b/nvim/lsp/dhall_lsp_server.lua deleted file mode 100755 index 607d3fc..0000000 --- a/nvim/lsp/dhall_lsp_server.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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). - -return { - cmd = { 'dhall-lsp-server' }, - filetypes = { 'dhall' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/diagnosticls.lua b/nvim/lsp/diagnosticls.lua deleted file mode 100755 index f4a9391..0000000 --- a/nvim/lsp/diagnosticls.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://github.com/iamcco/diagnostic-languageserver ---- ---- Diagnostic language server integrate with linters. -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/nvim/lsp/digestif.lua b/nvim/lsp/digestif.lua deleted file mode 100755 index 064c32b..0000000 --- a/nvim/lsp/digestif.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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. -return { - cmd = { 'digestif' }, - filetypes = { 'tex', 'plaintex', 'context' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/djlsp.lua b/nvim/lsp/djlsp.lua deleted file mode 100755 index dca6f37..0000000 --- a/nvim/lsp/djlsp.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://github.com/fourdigits/django-template-lsp ---- ---- `djlsp`, a language server for Django templates. - -return { - cmd = { 'djlsp' }, - filetypes = { 'html', 'htmldjango' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/docker_compose_language_service.lua b/nvim/lsp/docker_compose_language_service.lua deleted file mode 100755 index a146be2..0000000 --- a/nvim/lsp/docker_compose_language_service.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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`. - -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/nvim/lsp/docker_language_server.lua b/nvim/lsp/docker_language_server.lua deleted file mode 100755 index 76236ff..0000000 --- a/nvim/lsp/docker_language_server.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'docker-language-server', 'start', '--stdio' }, - filetypes = { 'dockerfile', 'yaml.docker-compose' }, - 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/nvim/lsp/dockerls.lua b/nvim/lsp/dockerls.lua deleted file mode 100755 index f497035..0000000 --- a/nvim/lsp/dockerls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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, ---- }, ---- }, ---- } ---- } ---- }) ---- ``` -return { - cmd = { 'docker-langserver', '--stdio' }, - filetypes = { 'dockerfile' }, - root_markers = { 'Dockerfile' }, -} diff --git a/nvim/lsp/dolmenls.lua b/nvim/lsp/dolmenls.lua deleted file mode 100755 index c0eefb4..0000000 --- a/nvim/lsp/dolmenls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/Gbury/dolmen/blob/master/doc/lsp.md ---- ---- `dolmenls` can be installed via `opam` ---- ```sh ---- opam install dolmen_lsp ---- ``` -return { - cmd = { 'dolmenls' }, - filetypes = { 'smt2', 'tptp', 'p', 'cnf', 'icnf', 'zf' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/dotls.lua b/nvim/lsp/dotls.lua deleted file mode 100755 index 8867fcf..0000000 --- a/nvim/lsp/dotls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/nikeee/dot-language-server ---- ---- `dot-language-server` can be installed via `npm`: ---- ```sh ---- npm install -g dot-language-server ---- ``` -return { - cmd = { 'dot-language-server', '--stdio' }, - filetypes = { 'dot' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/dprint.lua b/nvim/lsp/dprint.lua deleted file mode 100755 index 57d6c96..0000000 --- a/nvim/lsp/dprint.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@brief ---- ---- https://github.com/dprint/dprint ---- ---- Pluggable and configurable code formatting platform written in Rust. -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/nvim/lsp/ds_pinyin_lsp.lua b/nvim/lsp/ds_pinyin_lsp.lua deleted file mode 100755 index 528a510..0000000 --- a/nvim/lsp/ds_pinyin_lsp.lua +++ /dev/null @@ -1,66 +0,0 @@ ----@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 - -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/nvim/lsp/dts_lsp.lua b/nvim/lsp/dts_lsp.lua deleted file mode 100755 index a687fcb..0000000 --- a/nvim/lsp/dts_lsp.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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 - -return { - name = 'dts_lsp', - cmd = { 'dts-lsp' }, - filetypes = { 'dts', 'dtsi', 'overlay' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/earthlyls.lua b/nvim/lsp/earthlyls.lua deleted file mode 100755 index f62466f..0000000 --- a/nvim/lsp/earthlyls.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://github.com/glehmann/earthlyls ---- ---- A fast language server for earthly. - -return { - cmd = { 'earthlyls' }, - filetypes = { 'earthfile' }, - root_markers = { 'Earthfile' }, -} diff --git a/nvim/lsp/ecsact.lua b/nvim/lsp/ecsact.lua deleted file mode 100755 index 2c9876c..0000000 --- a/nvim/lsp/ecsact.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -return { - cmd = { 'ecsact_lsp_server', '--stdio' }, - filetypes = { 'ecsact' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/efm.lua b/nvim/lsp/efm.lua deleted file mode 100755 index 4515daf..0000000 --- a/nvim/lsp/efm.lua +++ /dev/null @@ -1,24 +0,0 @@ ---- @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 ---- }) ---- ``` - -return { - cmd = { 'efm-langserver' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/elixirls.lua b/nvim/lsp/elixirls.lua deleted file mode 100755 index d3e5cb3..0000000 --- a/nvim/lsp/elixirls.lua +++ /dev/null @@ -1,38 +0,0 @@ ----@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. -return { - filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, - root_dir = function(bufnr, on_dir) - local fname = vim.api.nvim_buf_get_name(bufnr) - 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/nvim/lsp/elmls.lua b/nvim/lsp/elmls.lua deleted file mode 100755 index a7f2778..0000000 --- a/nvim/lsp/elmls.lua +++ /dev/null @@ -1,34 +0,0 @@ ----@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 - -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 = api.nvim_buf_get_option(0, '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/nvim/lsp/elp.lua b/nvim/lsp/elp.lua deleted file mode 100755 index 0731601..0000000 --- a/nvim/lsp/elp.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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. -return { - cmd = { 'elp', 'server' }, - filetypes = { 'erlang' }, - root_markers = { 'rebar.config', 'erlang.mk', '.git' }, -} diff --git a/nvim/lsp/ember.lua b/nvim/lsp/ember.lua deleted file mode 100755 index 73ceae1..0000000 --- a/nvim/lsp/ember.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'ember-language-server', '--stdio' }, - filetypes = { 'handlebars', 'typescript', 'javascript', 'typescript.glimmer', 'javascript.glimmer' }, - root_markers = { 'ember-cli-build.js', '.git' }, -} diff --git a/nvim/lsp/emmet_language_server.lua b/nvim/lsp/emmet_language_server.lua deleted file mode 100755 index c3ee04d..0000000 --- a/nvim/lsp/emmet_language_server.lua +++ /dev/null @@ -1,29 +0,0 @@ ----@brief ---- ---- https://github.com/olrtg/emmet-language-server ---- ---- Package can be installed via `npm`: ---- ```sh ---- npm install -g @olrtg/emmet-language-server ---- ``` -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/nvim/lsp/emmet_ls.lua b/nvim/lsp/emmet_ls.lua deleted file mode 100755 index 148e4c0..0000000 --- a/nvim/lsp/emmet_ls.lua +++ /dev/null @@ -1,29 +0,0 @@ ----@brief ---- ---- https://github.com/aca/emmet-ls ---- ---- Package can be installed via `npm`: ---- ```sh ---- npm install -g emmet-ls ---- ``` -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/nvim/lsp/emmylua_ls.lua b/nvim/lsp/emmylua_ls.lua deleted file mode 100755 index c204655..0000000 --- a/nvim/lsp/emmylua_ls.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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. - -return { - cmd = { 'emmylua_ls' }, - filetypes = { 'lua' }, - root_markers = { - '.luarc.json', - '.emmyrc.json', - '.luacheckrc', - '.git', - }, - workspace_required = false, -} diff --git a/nvim/lsp/erg_language_server.lua b/nvim/lsp/erg_language_server.lua deleted file mode 100755 index 5bd7014..0000000 --- a/nvim/lsp/erg_language_server.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 ---- ``` - -return { - cmd = { 'erg', '--language-server' }, - filetypes = { 'erg' }, - root_markers = { 'package.er', '.git' }, -} diff --git a/nvim/lsp/erlangls.lua b/nvim/lsp/erlangls.lua deleted file mode 100755 index 2487df6..0000000 --- a/nvim/lsp/erlangls.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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) -return { - cmd = { 'erlang_ls' }, - filetypes = { 'erlang' }, - root_markers = { 'rebar.config', 'erlang.mk', '.git' }, -} diff --git a/nvim/lsp/esbonio.lua b/nvim/lsp/esbonio.lua deleted file mode 100755 index 9069e78..0000000 --- a/nvim/lsp/esbonio.lua +++ /dev/null @@ -1,49 +0,0 @@ ----@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) -return { - cmd = { 'python3', '-m', 'esbonio' }, - filetypes = { 'rst' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/eslint.lua b/nvim/lsp/eslint.lua deleted file mode 100755 index 183343b..0000000 --- a/nvim/lsp/eslint.lua +++ /dev/null @@ -1,183 +0,0 @@ ---- @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` - -local util = require 'lspconfig.util' -local lsp = vim.lsp - -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, - -- https://eslint.org/docs/user-guide/configuring/configuration-files#configuration-file-formats - root_dir = function(bufnr, on_dir) - local root_file_patterns = { - '.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', - } - - local fname = vim.api.nvim_buf_get_name(bufnr) - root_file_patterns = util.insert_package_json(root_file_patterns, 'eslintConfig', fname) - on_dir(vim.fs.dirname(vim.fs.find(root_file_patterns, { path = fname, upward = true })[1])) - 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 = 'location' }, - 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 - local flat_config_files = { - 'eslint.config.js', - 'eslint.config.mjs', - 'eslint.config.cjs', - 'eslint.config.ts', - 'eslint.config.mts', - 'eslint.config.cts', - } - - for _, file in ipairs(flat_config_files) do - if vim.fn.filereadable(root_dir .. '/' .. file) == 1 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/nvim/lsp/facility_language_server.lua b/nvim/lsp/facility_language_server.lua deleted file mode 100755 index 1e81a2b..0000000 --- a/nvim/lsp/facility_language_server.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/FacilityApi/FacilityLanguageServer ---- ---- Facility language server protocol (LSP) support. -return { - cmd = { 'facility-language-server' }, - filetypes = { 'fsd' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/fennel_language_server.lua b/nvim/lsp/fennel_language_server.lua deleted file mode 100755 index a0b69c0..0000000 --- a/nvim/lsp/fennel_language_server.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://github.com/rydesun/fennel-language-server ---- ---- Fennel language server protocol (LSP) support. -return { - cmd = { 'fennel-language-server' }, - filetypes = { 'fennel' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/fennel_ls.lua b/nvim/lsp/fennel_ls.lua deleted file mode 100755 index 4023e02..0000000 --- a/nvim/lsp/fennel_ls.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@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). - -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/nvim/lsp/fish_lsp.lua b/nvim/lsp/fish_lsp.lua deleted file mode 100755 index 73055ca..0000000 --- a/nvim/lsp/fish_lsp.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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/) -return { - cmd = { 'fish-lsp', 'start' }, - filetypes = { 'fish' }, - root_markers = { 'config.fish', '.git' }, -} diff --git a/nvim/lsp/flow.lua b/nvim/lsp/flow.lua deleted file mode 100755 index bf91c59..0000000 --- a/nvim/lsp/flow.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'npx', '--no-install', 'flow', 'lsp' }, - filetypes = { 'javascript', 'javascriptreact', 'javascript.jsx' }, - root_markers = { '.flowconfig' }, -} diff --git a/nvim/lsp/flux_lsp.lua b/nvim/lsp/flux_lsp.lua deleted file mode 100755 index 642eabf..0000000 --- a/nvim/lsp/flux_lsp.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://github.com/influxdata/flux-lsp ---- `flux-lsp` can be installed via `cargo`: ---- ```sh ---- cargo install --git https://github.com/influxdata/flux-lsp ---- ``` -return { - cmd = { 'flux-lsp' }, - filetypes = { 'flux' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/foam_ls.lua b/nvim/lsp/foam_ls.lua deleted file mode 100755 index bbc9d72..0000000 --- a/nvim/lsp/foam_ls.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@brief ---- ---- https://github.com/FoamScience/foam-language-server ---- ---- `foam-language-server` can be installed via `npm` ---- ```sh ---- npm install -g foam-language-server ---- ``` - -return { - cmd = { 'foam-ls', '--stdio' }, - filetypes = { 'foam', 'OpenFOAM' }, - root_dir = function(bufnr, on_dir) - local fname = vim.api.nvim_buf_get_name(bufnr) - on_dir(vim.iter(vim.fs.parents(fname)):find(function(path) - if vim.uv.fs_stat(path .. '/system/controlDict') then - return path - end - end)) - end, -} diff --git a/nvim/lsp/fortls.lua b/nvim/lsp/fortls.lua deleted file mode 100755 index a96da1a..0000000 --- a/nvim/lsp/fortls.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@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). -return { - cmd = { - 'fortls', - '--notify_init', - '--hover_signature', - '--hover_language=fortran', - '--use_signature_help', - }, - filetypes = { 'fortran' }, - root_markers = { '.fortls', '.git' }, - settings = {}, -} diff --git a/nvim/lsp/fsautocomplete.lua b/nvim/lsp/fsautocomplete.lua deleted file mode 100755 index 335da67..0000000 --- a/nvim/lsp/fsautocomplete.lua +++ /dev/null @@ -1,53 +0,0 @@ ----@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' - -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/nvim/lsp/fsharp_language_server.lua b/nvim/lsp/fsharp_language_server.lua deleted file mode 100755 index 59a9ce5..0000000 --- a/nvim/lsp/fsharp_language_server.lua +++ /dev/null @@ -1,29 +0,0 @@ ----@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' - -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/nvim/lsp/fstar.lua b/nvim/lsp/fstar.lua deleted file mode 100755 index 2921621..0000000 --- a/nvim/lsp/fstar.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/FStarLang/FStar ---- ---- LSP support is included in FStar. Make sure `fstar.exe` is in your PATH. -return { - cmd = { 'fstar.exe', '--lsp' }, - filetypes = { 'fstar' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/futhark_lsp.lua b/nvim/lsp/futhark_lsp.lua deleted file mode 100755 index b467ed0..0000000 --- a/nvim/lsp/futhark_lsp.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'futhark', 'lsp' }, - filetypes = { 'futhark', 'fut' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/gdscript.lua b/nvim/lsp/gdscript.lua deleted file mode 100755 index 79fe975..0000000 --- a/nvim/lsp/gdscript.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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)) - -return { - cmd = cmd, - filetypes = { 'gd', 'gdscript', 'gdscript3' }, - root_markers = { 'project.godot', '.git' }, -} diff --git a/nvim/lsp/gdshader_lsp.lua b/nvim/lsp/gdshader_lsp.lua deleted file mode 100755 index 2e0c08d..0000000 --- a/nvim/lsp/gdshader_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/godofavacyn/gdshader-lsp ---- ---- A language server for the Godot Shading language. -return { - cmd = { 'gdshader-lsp', '--stdio' }, - filetypes = { 'gdshader', 'gdshaderinc' }, - root_markers = { 'project.godot' }, -} diff --git a/nvim/lsp/gh_actions_ls.lua b/nvim/lsp/gh_actions_ls.lua deleted file mode 100755 index 62e3d9e..0000000 --- a/nvim/lsp/gh_actions_ls.lua +++ /dev/null @@ -1,40 +0,0 @@ ----@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 ---- ``` -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, - - init_options = {}, -- needs to be present https://github.com/neovim/nvim-lspconfig/pull/3713#issuecomment-2857394868 - capabilities = { - workspace = { - didChangeWorkspaceFolders = { - dynamicRegistration = true, - }, - }, - }, -} diff --git a/nvim/lsp/ghcide.lua b/nvim/lsp/ghcide.lua deleted file mode 100755 index 65b83e8..0000000 --- a/nvim/lsp/ghcide.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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". -return { - cmd = { 'ghcide', '--lsp' }, - filetypes = { 'haskell', 'lhaskell' }, - root_markers = { 'stack.yaml', 'hie-bios', 'BUILD.bazel', 'cabal.config', 'package.yaml' }, -} diff --git a/nvim/lsp/ghdl_ls.lua b/nvim/lsp/ghdl_ls.lua deleted file mode 100755 index 12a394a..0000000 --- a/nvim/lsp/ghdl_ls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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). -return { - cmd = { 'ghdl-ls' }, - filetypes = { 'vhdl' }, - root_markers = { 'hdl-prj.json', '.git' }, -} diff --git a/nvim/lsp/ginko_ls.lua b/nvim/lsp/ginko_ls.lua deleted file mode 100755 index 501c5e7..0000000 --- a/nvim/lsp/ginko_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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. -return { - cmd = { 'ginko_ls' }, - filetypes = { 'dts' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/gitlab_ci_ls.lua b/nvim/lsp/gitlab_ci_ls.lua deleted file mode 100755 index 4832a91..0000000 --- a/nvim/lsp/gitlab_ci_ls.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@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/' - -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('.gitlab*', '.git')(fname)) - end, - init_options = { - cache_path = cache_dir, - log_path = cache_dir .. '/log/gitlab-ci-ls.log', - }, -} diff --git a/nvim/lsp/glasgow.lua b/nvim/lsp/glasgow.lua deleted file mode 100755 index e7aff60..0000000 --- a/nvim/lsp/glasgow.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'glasgow' }, - filetypes = { 'wgsl' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/gleam.lua b/nvim/lsp/gleam.lua deleted file mode 100755 index 29e2994..0000000 --- a/nvim/lsp/gleam.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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/) -return { - cmd = { 'gleam', 'lsp' }, - filetypes = { 'gleam' }, - root_markers = { 'gleam.toml', '.git' }, -} diff --git a/nvim/lsp/glint.lua b/nvim/lsp/glint.lua deleted file mode 100755 index 2ed30bb..0000000 --- a/nvim/lsp/glint.lua +++ /dev/null @@ -1,53 +0,0 @@ ----@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, ---- }, ---- }, ---- }) - -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/nvim/lsp/glsl_analyzer.lua b/nvim/lsp/glsl_analyzer.lua deleted file mode 100755 index 91f5861..0000000 --- a/nvim/lsp/glsl_analyzer.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://github.com/nolanderc/glsl_analyzer ---- ---- Language server for GLSL -return { - cmd = { 'glsl_analyzer' }, - filetypes = { 'glsl', 'vert', 'tesc', 'tese', 'frag', 'geom', 'comp' }, - root_markers = { '.git' }, - capabilities = {}, -} diff --git a/nvim/lsp/glslls.lua b/nvim/lsp/glslls.lua deleted file mode 100755 index 1c30101..0000000 --- a/nvim/lsp/glslls.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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 -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/nvim/lsp/gnls.lua b/nvim/lsp/gnls.lua deleted file mode 100755 index a44b8c8..0000000 --- a/nvim/lsp/gnls.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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 $@ ---- ``` -return { - cmd = { 'gnls', '--stdio' }, - filetypes = { 'gn' }, - root_markers = { '.gn', '.git' }, -} diff --git a/nvim/lsp/golangci_lint_ls.lua b/nvim/lsp/golangci_lint_ls.lua deleted file mode 100755 index 9d6cd48..0000000 --- a/nvim/lsp/golangci_lint_ls.lua +++ /dev/null @@ -1,48 +0,0 @@ ----@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 ---- ``` -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 - -- 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') - else - 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/nvim/lsp/gopls.lua b/nvim/lsp/gopls.lua deleted file mode 100755 index 0b4c59f..0000000 --- a/nvim/lsp/gopls.lua +++ /dev/null @@ -1,98 +0,0 @@ ----@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 - -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/nvim/lsp/gradle_ls.lua b/nvim/lsp/gradle_ls.lua deleted file mode 100755 index 373a926..0000000 --- a/nvim/lsp/gradle_ls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@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 - -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/nvim/lsp/grammarly.lua b/nvim/lsp/grammarly.lua deleted file mode 100755 index 4c7d379..0000000 --- a/nvim/lsp/grammarly.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@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. -return { - cmd = { 'grammarly-languageserver', '--stdio' }, - filetypes = { 'markdown' }, - root_markers = { '.git' }, - handlers = { - ['$/updateDocumentState'] = function() - return '' - end, - }, - init_options = { - clientId = 'client_BaDkMgx4X19X9UxxYRCXZo', - }, -} diff --git a/nvim/lsp/graphql.lua b/nvim/lsp/graphql.lua deleted file mode 100755 index 8620680..0000000 --- a/nvim/lsp/graphql.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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' - -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/nvim/lsp/groovyls.lua b/nvim/lsp/groovyls.lua deleted file mode 100755 index 7610bf0..0000000 --- a/nvim/lsp/groovyls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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" }, ---- ... ---- }) ---- ``` -return { - cmd = { - 'java', - '-jar', - 'groovy-language-server-all.jar', - }, - filetypes = { 'groovy' }, - root_markers = { 'Jenkinsfile', '.git' }, -} diff --git a/nvim/lsp/guile_ls.lua b/nvim/lsp/guile_ls.lua deleted file mode 100755 index 8beb253..0000000 --- a/nvim/lsp/guile_ls.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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. -return { - cmd = { 'guile-lsp-server' }, - filetypes = { - 'scheme.guile', - }, - root_markers = { 'guix.scm', '.git' }, -} diff --git a/nvim/lsp/harper_ls.lua b/nvim/lsp/harper_ls.lua deleted file mode 100755 index 922df06..0000000 --- a/nvim/lsp/harper_ls.lua +++ /dev/null @@ -1,48 +0,0 @@ ----@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" ---- } ---- }, ---- }) ---- ``` -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', - }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/hdl_checker.lua b/nvim/lsp/hdl_checker.lua deleted file mode 100755 index 0ef83be..0000000 --- a/nvim/lsp/hdl_checker.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/suoto/hdl_checker ---- Language server for hdl-checker. ---- Install using: `pip install hdl-checker --upgrade` -return { - cmd = { 'hdl_checker', '--lsp' }, - filetypes = { 'vhdl', 'verilog', 'systemverilog' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/helm_ls.lua b/nvim/lsp/helm_ls.lua deleted file mode 100755 index 9c92fa0..0000000 --- a/nvim/lsp/helm_ls.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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. -return { - cmd = { 'helm_ls', 'serve' }, - filetypes = { 'helm', 'yaml.helm-values' }, - root_markers = { 'Chart.yaml' }, - capabilities = { - workspace = { - didChangeWatchedFiles = { - dynamicRegistration = true, - }, - }, - }, -} diff --git a/nvim/lsp/herb_ls.lua b/nvim/lsp/herb_ls.lua deleted file mode 100755 index 865a435..0000000 --- a/nvim/lsp/herb_ls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'herb-language-server', '--stdio' }, - filetypes = { 'html', 'ruby', 'eruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/hhvm.lua b/nvim/lsp/hhvm.lua deleted file mode 100755 index 4a08a86..0000000 --- a/nvim/lsp/hhvm.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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 -return { - cmd = { 'hh_client', 'lsp' }, - filetypes = { 'php', 'hack' }, - root_markers = { '.hhconfig' }, -} diff --git a/nvim/lsp/hie.lua b/nvim/lsp/hie.lua deleted file mode 100755 index 49d9f5d..0000000 --- a/nvim/lsp/hie.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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"); ---- } ---- } ---- ``` -return { - cmd = { 'hie-wrapper', '--lsp' }, - filetypes = { 'haskell' }, - root_markers = { 'stack.yaml', 'package.yaml', '.git' }, -} diff --git a/nvim/lsp/hlasm.lua b/nvim/lsp/hlasm.lua deleted file mode 100755 index a7bcfcb..0000000 --- a/nvim/lsp/hlasm.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@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). -return { - cmd = { 'hlasm_language_server' }, - filetypes = { 'hlasm' }, - root_markers = { '.hlasmplugin' }, -} diff --git a/nvim/lsp/hls.lua b/nvim/lsp/hls.lua deleted file mode 100755 index f6717e0..0000000 --- a/nvim/lsp/hls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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' - -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/nvim/lsp/hoon_ls.lua b/nvim/lsp/hoon_ls.lua deleted file mode 100755 index f3e4fd1..0000000 --- a/nvim/lsp/hoon_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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` -return { - cmd = { 'hoon-language-server' }, - filetypes = { 'hoon' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/html.lua b/nvim/lsp/html.lua deleted file mode 100755 index 523b8b4..0000000 --- a/nvim/lsp/html.lua +++ /dev/null @@ -1,34 +0,0 @@ ----@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, ---- }) ---- ``` -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/nvim/lsp/htmx.lua b/nvim/lsp/htmx.lua deleted file mode 100755 index 2d20714..0000000 --- a/nvim/lsp/htmx.lua +++ /dev/null @@ -1,62 +0,0 @@ ----@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. -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/nvim/lsp/hydra_lsp.lua b/nvim/lsp/hydra_lsp.lua deleted file mode 100755 index 70c7960..0000000 --- a/nvim/lsp/hydra_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/Retsediv/hydra-lsp ---- ---- LSP for Hydra Python package config files. -return { - cmd = { 'hydra-lsp' }, - filetypes = { 'yaml' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/hyprls.lua b/nvim/lsp/hyprls.lua deleted file mode 100755 index ab8270f..0000000 --- a/nvim/lsp/hyprls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/hyprland-community/hyprls ---- ---- `hyprls` can be installed via `go`: ---- ```sh ---- go install github.com/ewen-lbh/hyprls/cmd/hyprls@latest ---- ``` -return { - cmd = { 'hyprls', '--stdio' }, - filetypes = { 'hyprlang' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/idris2_lsp.lua b/nvim/lsp/idris2_lsp.lua deleted file mode 100755 index 3997863..0000000 --- a/nvim/lsp/idris2_lsp.lua +++ /dev/null @@ -1,41 +0,0 @@ ----@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' - -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/nvim/lsp/intelephense.lua b/nvim/lsp/intelephense.lua deleted file mode 100755 index 383da13..0000000 --- a/nvim/lsp/intelephense.lua +++ /dev/null @@ -1,32 +0,0 @@ ----@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; ---- }; ---- }; ---- } ---- ``` - -return { - cmd = { 'intelephense', '--stdio' }, - filetypes = { 'php' }, - root_markers = { '.git', 'composer.json' }, -} diff --git a/nvim/lsp/janet_lsp.lua b/nvim/lsp/janet_lsp.lua deleted file mode 100755 index 0b2edbf..0000000 --- a/nvim/lsp/janet_lsp.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/CFiggers/janet-lsp ---- ---- A Language Server Protocol implementation for Janet. -return { - cmd = { - 'janet-lsp', - '--stdio', - }, - filetypes = { 'janet' }, - root_markers = { 'project.janet', '.git' }, -} diff --git a/nvim/lsp/java_language_server.lua b/nvim/lsp/java_language_server.lua deleted file mode 100755 index 950e42b..0000000 --- a/nvim/lsp/java_language_server.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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 -return { - filetypes = { 'java' }, - root_markers = { 'build.gradle', 'build.gradle.kts', 'pom.xml', '.git' }, - settings = {}, -} diff --git a/nvim/lsp/jdtls.lua b/nvim/lsp/jdtls.lua deleted file mode 100755 index e9cce6a..0000000 --- a/nvim/lsp/jdtls.lua +++ /dev/null @@ -1,146 +0,0 @@ ----@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 handlers = require 'vim.lsp.handlers' - -local env = { - HOME = vim.uv.os_homedir(), - XDG_CACHE_HOME = os.getenv 'XDG_CACHE_HOME', - JDTLS_JVM_ARGS = os.getenv 'JDTLS_JVM_ARGS', -} - -local function get_cache_dir() - return env.XDG_CACHE_HOME and env.XDG_CACHE_HOME or env.HOME .. '/.cache' -end - -local function get_jdtls_cache_dir() - return get_cache_dir() .. '/jdtls' -end - -local function get_jdtls_config_dir() - return get_jdtls_cache_dir() .. '/config' -end - -local function get_jdtls_workspace_dir() - return get_jdtls_cache_dir() .. '/workspace' -end - -local function get_jdtls_jvm_args() - local args = {} - for a in string.gmatch((env.JDTLS_JVM_ARGS or ''), '%S+') do - local arg = string.format('--jvm-arg=%s', a) - table.insert(args, arg) - end - return unpack(args) -end - --- TextDocument version is reported as 0, override with nil so that --- the client doesn't think the document is newer and refuses to update --- See: https://github.com/eclipse/eclipse.jdt.ls/issues/1695 -local function fix_zero_version(workspace_edit) - if workspace_edit and workspace_edit.documentChanges then - for _, change in pairs(workspace_edit.documentChanges) do - local text_document = change.textDocument - if text_document and text_document.version and text_document.version == 0 then - text_document.version = nil - end - end - end - return workspace_edit -end - -local function on_textdocument_codeaction(err, actions, ctx) - for _, action in ipairs(actions) do - -- TODO: (steelsojka) Handle more than one edit? - if action.command == 'java.apply.workspaceEdit' then -- 'action' is Command in java format - action.edit = fix_zero_version(action.edit or action.arguments[1]) - elseif type(action.command) == 'table' and action.command.command == 'java.apply.workspaceEdit' then -- 'action' is CodeAction in java format - action.edit = fix_zero_version(action.edit or action.command.arguments[1]) - end - end - - handlers[ctx.method](err, actions, ctx) -end - -local function on_textdocument_rename(err, workspace_edit, ctx) - handlers[ctx.method](err, fix_zero_version(workspace_edit), ctx) -end - -local function on_workspace_applyedit(err, workspace_edit, ctx) - handlers[ctx.method](err, fix_zero_version(workspace_edit), ctx) -end - --- Non-standard notification that can be used to display progress -local function on_language_status(_, result) - local command = vim.api.nvim_command - command 'echohl ModeMsg' - command(string.format('echo "%s"', result.message)) - command 'echohl None' -end - -return { - cmd = { - 'jdtls', - '-configuration', - get_jdtls_config_dir(), - '-data', - get_jdtls_workspace_dir(), - get_jdtls_jvm_args(), - }, - filetypes = { 'java' }, - root_markers = { - -- Multi-module projects - '.git', - 'build.gradle', - 'build.gradle.kts', - -- Single-module projects - 'build.xml', -- Ant - 'pom.xml', -- Maven - 'settings.gradle', -- Gradle - 'settings.gradle.kts', -- Gradle - }, - init_options = { - workspace = get_jdtls_workspace_dir(), - jvm_args = {}, - os_config = nil, - }, - handlers = { - -- Due to an invalid protocol implementation in the jdtls we have to conform these to be spec compliant. - -- https://github.com/eclipse/eclipse.jdt.ls/issues/376 - ['textDocument/codeAction'] = on_textdocument_codeaction, - ['textDocument/rename'] = on_textdocument_rename, - ['workspace/applyEdit'] = on_workspace_applyedit, - ['language/status'] = vim.schedule_wrap(on_language_status), - }, -} diff --git a/nvim/lsp/jedi_language_server.lua b/nvim/lsp/jedi_language_server.lua deleted file mode 100755 index 3cd7d20..0000000 --- a/nvim/lsp/jedi_language_server.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@brief ---- ---- https://github.com/pappasam/jedi-language-server ---- ---- `jedi-language-server`, a language server for Python, built on top of jedi -return { - cmd = { 'jedi-language-server' }, - filetypes = { 'python' }, - root_markers = { - 'pyproject.toml', - 'setup.py', - 'setup.cfg', - 'requirements.txt', - 'Pipfile', - '.git', - }, -} diff --git a/nvim/lsp/jinja_lsp.lua b/nvim/lsp/jinja_lsp.lua deleted file mode 100755 index 9807b17..0000000 --- a/nvim/lsp/jinja_lsp.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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', ---- }, ---- } ---- ``` -return { - name = 'jinja_lsp', - cmd = { 'jinja-lsp' }, - filetypes = { 'jinja' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/jqls.lua b/nvim/lsp/jqls.lua deleted file mode 100755 index d03230d..0000000 --- a/nvim/lsp/jqls.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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]]) ---- ``` -return { - cmd = { 'jq-lsp' }, - filetypes = { 'jq' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/jsonls.lua b/nvim/lsp/jsonls.lua deleted file mode 100755 index da8a338..0000000 --- a/nvim/lsp/jsonls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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, ---- }) ---- ``` -return { - cmd = { 'vscode-json-language-server', '--stdio' }, - filetypes = { 'json', 'jsonc' }, - init_options = { - provideFormatter = true, - }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/jsonnet_ls.lua b/nvim/lsp/jsonnet_ls.lua deleted file mode 100755 index 7081204..0000000 --- a/nvim/lsp/jsonnet_ls.lua +++ /dev/null @@ -1,18 +0,0 @@ ---- @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 ---- ``` -return { - cmd = { 'jsonnet-language-server' }, - filetypes = { - 'jsonnet', - 'libsonnet', - }, - root_markers = { 'jsonnetfile.json', '.git' }, -} diff --git a/nvim/lsp/julials.lua b/nvim/lsp/julials.lua deleted file mode 100755 index 1208447..0000000 --- a/nvim/lsp/julials.lua +++ /dev/null @@ -1,130 +0,0 @@ ----@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) - ]], -} - -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/nvim/lsp/just.lua b/nvim/lsp/just.lua deleted file mode 100755 index 7242665..0000000 --- a/nvim/lsp/just.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/terror/just-lsp ---- ---- `just-lsp` is an LSP for just built on top of the tree-sitter-just parser. -return { - cmd = { 'just-lsp' }, - filetypes = { 'just' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/kcl.lua b/nvim/lsp/kcl.lua deleted file mode 100755 index 50f1dd9..0000000 --- a/nvim/lsp/kcl.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://github.com/kcl-lang/kcl.nvim ---- ---- Language server for the KCL configuration and policy language. ---- -return { - cmd = { 'kcl-language-server' }, - filetypes = { 'kcl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/koka.lua b/nvim/lsp/koka.lua deleted file mode 100755 index f83aa4b..0000000 --- a/nvim/lsp/koka.lua +++ /dev/null @@ -1,9 +0,0 @@ ----@brief ---- ---- https://koka-lang.github.io/koka/doc/index.html ---- Koka is a functional programming language with effect types and handlers. -return { - cmd = { 'koka', '--language-server', '--lsstdio' }, - filetypes = { 'koka' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/kotlin_language_server.lua b/nvim/lsp/kotlin_language_server.lua deleted file mode 100755 index d70afa7..0000000 --- a/nvim/lsp/kotlin_language_server.lua +++ /dev/null @@ -1,41 +0,0 @@ ----@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 -} - -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/nvim/lsp/kotlin_lsp.lua b/nvim/lsp/kotlin_lsp.lua deleted file mode 100755 index a36faa8..0000000 --- a/nvim/lsp/kotlin_lsp.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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. -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/nvim/lsp/kulala_ls.lua b/nvim/lsp/kulala_ls.lua deleted file mode 100755 index 77f5dc8..0000000 --- a/nvim/lsp/kulala_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/mistweaverco/kulala-ls ---- ---- A minimal language server for HTTP syntax. -return { - cmd = { 'kulala-ls', '--stdio' }, - filetypes = { 'http' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/laravel_ls.lua b/nvim/lsp/laravel_ls.lua deleted file mode 100755 index 448ebdb..0000000 --- a/nvim/lsp/laravel_ls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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`. - -return { - cmd = { 'laravel-ls' }, - filetypes = { 'php', 'blade' }, - root_markers = { 'artisan' }, -} diff --git a/nvim/lsp/lean3ls.lua b/nvim/lsp/lean3ls.lua deleted file mode 100755 index 07ff059..0000000 --- a/nvim/lsp/lean3ls.lua +++ /dev/null @@ -1,39 +0,0 @@ ----@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`. - -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/nvim/lsp/lelwel_ls.lua b/nvim/lsp/lelwel_ls.lua deleted file mode 100755 index d9f5fd3..0000000 --- a/nvim/lsp/lelwel_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'lelwel-ls' }, - filetypes = { 'llw' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/lemminx.lua b/nvim/lsp/lemminx.lua deleted file mode 100755 index 57beaa2..0000000 --- a/nvim/lsp/lemminx.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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. -return { - cmd = { 'lemminx' }, - filetypes = { 'xml', 'xsd', 'xsl', 'xslt', 'svg' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/lexical.lua b/nvim/lsp/lexical.lua deleted file mode 100755 index 0e69545..0000000 --- a/nvim/lsp/lexical.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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. -return { - filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, - root_markers = { 'mix.exs', '.git' }, -} diff --git a/nvim/lsp/lsp_ai.lua b/nvim/lsp/lsp_ai.lua deleted file mode 100755 index cf005f5..0000000 --- a/nvim/lsp/lsp_ai.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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. -return { - cmd = { 'lsp-ai' }, - filetypes = {}, - root_dir = nil, - init_options = { - memory = { - file_store = vim.empty_dict(), - }, - models = vim.empty_dict(), - }, -} diff --git a/nvim/lsp/ltex.lua b/nvim/lsp/ltex.lua deleted file mode 100755 index c50b91e..0000000 --- a/nvim/lsp/ltex.lua +++ /dev/null @@ -1,84 +0,0 @@ ----@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 - -return { - cmd = { 'ltex-ls' }, - filetypes = filetypes, - root_markers = { '.git' }, - get_language_id = get_language_id, - settings = { - ltex = { - enabled = enabled_ids, - }, - }, -} diff --git a/nvim/lsp/ltex_plus.lua b/nvim/lsp/ltex_plus.lua deleted file mode 100755 index e5444f9..0000000 --- a/nvim/lsp/ltex_plus.lua +++ /dev/null @@ -1,88 +0,0 @@ ----@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', -} - -local function get_language_id(_, filetype) - return language_id_mapping[filetype] or filetype -end - -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 = get_language_id, - 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/nvim/lsp/lua_ls.lua b/nvim/lsp/lua_ls.lua deleted file mode 100755 index b5107c6..0000000 --- a/nvim/lsp/lua_ls.lua +++ /dev/null @@ -1,90 +0,0 @@ ----@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) ---- -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/nvim/lsp/luau_lsp.lua b/nvim/lsp/luau_lsp.lua deleted file mode 100755 index 70f3ac1..0000000 --- a/nvim/lsp/luau_lsp.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'luau-lsp', 'lsp' }, - filetypes = { 'luau' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/lwc_ls.lua b/nvim/lsp/lwc_ls.lua deleted file mode 100755 index b2f6a06..0000000 --- a/nvim/lsp/lwc_ls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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' ---- } ---- }) ---- ``` -return { - cmd = { 'lwc-language-server', '--stdio' }, - filetypes = { 'javascript', 'html' }, - root_markers = { 'sfdx-project.json' }, - init_options = { - embeddedLanguages = { - javascript = true, - }, - }, -} diff --git a/nvim/lsp/m68k.lua b/nvim/lsp/m68k.lua deleted file mode 100755 index 2af060d..0000000 --- a/nvim/lsp/m68k.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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' ---- ``` -return { - cmd = { 'm68k-lsp-server', '--stdio' }, - filetypes = { 'asm68k' }, - root_markers = { 'Makefile', '.git' }, -} diff --git a/nvim/lsp/markdown_oxide.lua b/nvim/lsp/markdown_oxide.lua deleted file mode 100755 index 8f2697b..0000000 --- a/nvim/lsp/markdown_oxide.lua +++ /dev/null @@ -1,32 +0,0 @@ ----@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. -return { - root_markers = { '.git', '.obsidian', '.moxide.toml' }, - filetypes = { 'markdown' }, - cmd = { 'markdown-oxide' }, - on_attach = function(_, bufnr) - vim.api.nvim_buf_create_user_command(bufnr, 'LspToday', function() - vim.lsp.buf.execute_command { command = 'jump', arguments = { 'today' } } - end, { - desc = "Open today's daily note", - }) - vim.api.nvim_buf_create_user_command(bufnr, 'LspTomorrow', function() - vim.lsp.buf.execute_command { command = 'jump', arguments = { 'tomorrow' } } - end, { - desc = "Open tomorrow's daily note", - }) - vim.api.nvim_buf_create_user_command(bufnr, 'LspYesterday', function() - vim.lsp.buf.execute_command { command = 'jump', arguments = { 'yesterday' } } - end, { - desc = "Open yesterday's daily note", - }) - end, -} diff --git a/nvim/lsp/marko-js.lua b/nvim/lsp/marko-js.lua deleted file mode 100755 index 0075b05..0000000 --- a/nvim/lsp/marko-js.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'marko-language-server', '--stdio' }, - filetypes = { 'marko' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/marksman.lua b/nvim/lsp/marksman.lua deleted file mode 100755 index 6f436e4..0000000 --- a/nvim/lsp/marksman.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 - -local bin_name = 'marksman' -local cmd = { bin_name, 'server' } - -return { - cmd = cmd, - filetypes = { 'markdown', 'markdown.mdx' }, - root_markers = { '.marksman.toml', '.git' }, -} diff --git a/nvim/lsp/matlab_ls.lua b/nvim/lsp/matlab_ls.lua deleted file mode 100755 index bf4f4f7..0000000 --- a/nvim/lsp/matlab_ls.lua +++ /dev/null @@ -1,32 +0,0 @@ ----@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', ---- ... ---- }, ---- }, ---- ``` -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/nvim/lsp/mdx_analyzer.lua b/nvim/lsp/mdx_analyzer.lua deleted file mode 100755 index ce87f53..0000000 --- a/nvim/lsp/mdx_analyzer.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@brief ---- https://github.com/mdx-js/mdx-analyzer ---- ---- `mdx-analyzer`, a language server for MDX - -local util = require 'lspconfig.util' - -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/nvim/lsp/mesonlsp.lua b/nvim/lsp/mesonlsp.lua deleted file mode 100755 index c447043..0000000 --- a/nvim/lsp/mesonlsp.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@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 - -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/nvim/lsp/metals.lua b/nvim/lsp/metals.lua deleted file mode 100755 index 573ca01..0000000 --- a/nvim/lsp/metals.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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`. -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/nvim/lsp/millet.lua b/nvim/lsp/millet.lua deleted file mode 100755 index c3833d2..0000000 --- a/nvim/lsp/millet.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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` -return { - cmd = { 'millet' }, - filetypes = { 'sml' }, - root_markers = { 'millet.toml' }, -} diff --git a/nvim/lsp/mint.lua b/nvim/lsp/mint.lua deleted file mode 100755 index 56172eb..0000000 --- a/nvim/lsp/mint.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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. -return { - cmd = { 'mint', 'ls' }, - filetypes = { 'mint' }, - root_markers = { 'mint.json', '.git' }, -} diff --git a/nvim/lsp/mlir_lsp_server.lua b/nvim/lsp/mlir_lsp_server.lua deleted file mode 100755 index 75bed78..0000000 --- a/nvim/lsp/mlir_lsp_server.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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) -return { - cmd = { 'mlir-lsp-server' }, - filetypes = { 'mlir' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/mlir_pdll_lsp_server.lua b/nvim/lsp/mlir_pdll_lsp_server.lua deleted file mode 100755 index efcc871..0000000 --- a/nvim/lsp/mlir_pdll_lsp_server.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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) -return { - cmd = { 'mlir-pdll-lsp-server' }, - filetypes = { 'pdll' }, - root_markers = { 'pdll_compile_commands.yml', '.git' }, -} diff --git a/nvim/lsp/mm0_ls.lua b/nvim/lsp/mm0_ls.lua deleted file mode 100755 index aa8c480..0000000 --- a/nvim/lsp/mm0_ls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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`. -return { - cmd = { 'mm0-rs', 'server' }, - root_markers = { '.git' }, - filetypes = { 'metamath-zero' }, -} diff --git a/nvim/lsp/mojo.lua b/nvim/lsp/mojo.lua deleted file mode 100755 index 8b84d87..0000000 --- a/nvim/lsp/mojo.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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. -return { - cmd = { 'mojo-lsp-server' }, - filetypes = { 'mojo' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/motoko_lsp.lua b/nvim/lsp/motoko_lsp.lua deleted file mode 100755 index f479e2d..0000000 --- a/nvim/lsp/motoko_lsp.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/dfinity/vscode-motoko ---- ---- Language server for the Motoko programming language. -return { - cmd = { 'motoko-lsp', '--stdio' }, - filetypes = { 'motoko' }, - root_markers = { 'dfx.json', '.git' }, - init_options = { - formatter = 'auto', - }, -} diff --git a/nvim/lsp/move_analyzer.lua b/nvim/lsp/move_analyzer.lua deleted file mode 100755 index 71cfbe0..0000000 --- a/nvim/lsp/move_analyzer.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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. -return { - cmd = { 'move-analyzer' }, - filetypes = { 'move' }, - root_markers = { 'Move.toml' }, -} diff --git a/nvim/lsp/msbuild_project_tools_server.lua b/nvim/lsp/msbuild_project_tools_server.lua deleted file mode 100755 index bf2f2b4..0000000 --- a/nvim/lsp/msbuild_project_tools_server.lua +++ /dev/null @@ -1,46 +0,0 @@ ----@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' - -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/nvim/lsp/muon.lua b/nvim/lsp/muon.lua deleted file mode 100755 index 7d2f546..0000000 --- a/nvim/lsp/muon.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@brief ---- ---- https://muon.build -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/nvim/lsp/mutt_ls.lua b/nvim/lsp/mutt_ls.lua deleted file mode 100755 index 21ae825..0000000 --- a/nvim/lsp/mutt_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'mutt-language-server' }, - filetypes = { 'muttrc', 'neomuttrc' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/nelua_lsp.lua b/nvim/lsp/nelua_lsp.lua deleted file mode 100755 index 7f81034..0000000 --- a/nvim/lsp/nelua_lsp.lua +++ /dev/null @@ -1,29 +0,0 @@ ---- @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" }, ---- }) ---- ``` -return { - filetypes = { 'nelua' }, - root_markers = { 'Makefile', '.git', '*.nelua' }, -} diff --git a/nvim/lsp/neocmake.lua b/nvim/lsp/neocmake.lua deleted file mode 100755 index 8d066b0..0000000 --- a/nvim/lsp/neocmake.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@brief ---- ---- https://github.com/Decodetalkers/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, ---- }) ---- ``` -return { - cmd = { 'neocmakelsp', '--stdio' }, - filetypes = { 'cmake' }, - root_markers = { '.git', 'build', 'cmake' }, -} diff --git a/nvim/lsp/nextflow_ls.lua b/nvim/lsp/nextflow_ls.lua deleted file mode 100755 index 8871b33..0000000 --- a/nvim/lsp/nextflow_ls.lua +++ /dev/null @@ -1,36 +0,0 @@ ----@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' }, ---- }, ---- }, ---- }, ---- }) ---- ``` -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/nvim/lsp/nextls.lua b/nvim/lsp/nextls.lua deleted file mode 100755 index d6c57ff..0000000 --- a/nvim/lsp/nextls.lua +++ /dev/null @@ -1,9 +0,0 @@ ----@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.** -return { - filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, - root_markers = { 'mix.exs', '.git' }, -} diff --git a/nvim/lsp/nginx_language_server.lua b/nvim/lsp/nginx_language_server.lua deleted file mode 100755 index 399ca36..0000000 --- a/nvim/lsp/nginx_language_server.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@brief ---- ---- https://pypi.org/project/nginx-language-server/ ---- ---- `nginx-language-server` can be installed via pip: ---- ---- ```sh ---- pip install -U nginx-language-server ---- ``` -return { - cmd = { 'nginx-language-server' }, - filetypes = { 'nginx' }, - root_markers = { 'nginx.conf', '.git' }, -} diff --git a/nvim/lsp/nickel_ls.lua b/nvim/lsp/nickel_ls.lua deleted file mode 100755 index 1f70402..0000000 --- a/nvim/lsp/nickel_ls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@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). -return { - cmd = { 'nls' }, - filetypes = { 'ncl', 'nickel' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/nil_ls.lua b/nvim/lsp/nil_ls.lua deleted file mode 100755 index 71c7ff2..0000000 --- a/nvim/lsp/nil_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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._ -return { - cmd = { 'nil' }, - filetypes = { 'nix' }, - root_markers = { 'flake.nix', '.git' }, -} diff --git a/nvim/lsp/nim_langserver.lua b/nvim/lsp/nim_langserver.lua deleted file mode 100755 index cd5dc65..0000000 --- a/nvim/lsp/nim_langserver.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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' - -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/nvim/lsp/nimls.lua b/nvim/lsp/nimls.lua deleted file mode 100755 index ada0d79..0000000 --- a/nvim/lsp/nimls.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@brief ---- ---- https://github.com/PMunch/nimlsp ---- ---- `nimlsp` can be installed via the `nimble` package manager: ---- ---- ```sh ---- nimble install nimlsp ---- ``` - -local util = require 'lspconfig.util' - -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/nvim/lsp/nixd.lua b/nvim/lsp/nixd.lua deleted file mode 100755 index 2d01ebe..0000000 --- a/nvim/lsp/nixd.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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. -return { - cmd = { 'nixd' }, - filetypes = { 'nix' }, - root_markers = { 'flake.nix', 'git' }, -} diff --git a/nvim/lsp/nomad_lsp.lua b/nvim/lsp/nomad_lsp.lua deleted file mode 100755 index efc0ce7..0000000 --- a/nvim/lsp/nomad_lsp.lua +++ /dev/null @@ -1,33 +0,0 @@ ----@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 - -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/nvim/lsp/ntt.lua b/nvim/lsp/ntt.lua deleted file mode 100755 index 03e0c93..0000000 --- a/nvim/lsp/ntt.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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 = { ---- } ---- } ---- }) ---- ``` - -return { - cmd = { 'ntt', 'langserver' }, - filetypes = { 'ttcn' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/nushell.lua b/nvim/lsp/nushell.lua deleted file mode 100755 index b7f72f4..0000000 --- a/nvim/lsp/nushell.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://github.com/nushell/nushell ---- ---- Nushell built-in language server. -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/nvim/lsp/nxls.lua b/nvim/lsp/nxls.lua deleted file mode 100755 index 0c36cba..0000000 --- a/nvim/lsp/nxls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'nxls', '--stdio' }, - filetypes = { 'json', 'jsonc' }, - root_markers = { 'nx.json', '.git' }, -} diff --git a/nvim/lsp/ocamlls.lua b/nvim/lsp/ocamlls.lua deleted file mode 100755 index 5f6fde5..0000000 --- a/nvim/lsp/ocamlls.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@brief ---- ---- https://github.com/ocaml-lsp/ocaml-language-server ---- ---- `ocaml-language-server` can be installed via `npm` ---- ```sh ---- npm install -g ocaml-language-server ---- ``` - -local util = require 'lspconfig.util' - -return { - cmd = { 'ocaml-language-server', '--stdio' }, - filetypes = { 'ocaml', 'reason' }, - root_dir = function(bufnr, on_dir) - local fname = vim.api.nvim_buf_get_name(bufnr) - on_dir(util.root_pattern('*.opam', 'esy.json', 'package.json')(fname)) - end, -} diff --git a/nvim/lsp/ocamllsp.lua b/nvim/lsp/ocamllsp.lua deleted file mode 100755 index 27dbf82..0000000 --- a/nvim/lsp/ocamllsp.lua +++ /dev/null @@ -1,35 +0,0 @@ ----@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 ---- ``` - -local util = require 'lspconfig.util' - -local language_id_of = { - menhir = 'ocaml.menhir', - ocaml = 'ocaml', - ocamlinterface = 'ocaml.interface', - ocamllex = 'ocaml.ocamllex', - reason = 'reason', - dune = 'dune', -} - -local get_language_id = function(_, ftype) - return language_id_of[ftype] -end - -return { - cmd = { 'ocamllsp' }, - filetypes = { 'ocaml', 'menhir', 'ocamlinterface', 'ocamllex', 'reason', 'dune' }, - root_dir = function(bufnr, on_dir) - local fname = vim.api.nvim_buf_get_name(bufnr) - on_dir(util.root_pattern('*.opam', 'esy.json', 'package.json', '.git', 'dune-project', 'dune-workspace')(fname)) - end, - get_language_id = get_language_id, -} diff --git a/nvim/lsp/ols.lua b/nvim/lsp/ols.lua deleted file mode 100755 index 7aa1556..0000000 --- a/nvim/lsp/ols.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@brief ---- ---- https://github.com/DanielGavin/ols ---- ---- `Odin Language Server`. - -local util = require 'lspconfig.util' - -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/nvim/lsp/omnisharp.lua b/nvim/lsp/omnisharp.lua deleted file mode 100755 index ee3c960..0000000 --- a/nvim/lsp/omnisharp.lua +++ /dev/null @@ -1,91 +0,0 @@ ----@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' - -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/nvim/lsp/opencl_ls.lua b/nvim/lsp/opencl_ls.lua deleted file mode 100755 index 4e2dcc5..0000000 --- a/nvim/lsp/opencl_ls.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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). -return { - cmd = { 'opencl-language-server' }, - filetypes = { 'opencl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/openscad_ls.lua b/nvim/lsp/openscad_ls.lua deleted file mode 100755 index 813bb39..0000000 --- a/nvim/lsp/openscad_ls.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@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 -return { - cmd = { 'openscad-language-server' }, - filetypes = { 'openscad' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/openscad_lsp.lua b/nvim/lsp/openscad_lsp.lua deleted file mode 100755 index c68ad96..0000000 --- a/nvim/lsp/openscad_lsp.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'openscad-lsp', '--stdio' }, - filetypes = { 'openscad' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/oxlint.lua b/nvim/lsp/oxlint.lua deleted file mode 100755 index 67928f1..0000000 --- a/nvim/lsp/oxlint.lua +++ /dev/null @@ -1,30 +0,0 @@ ---- @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' - -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/nvim/lsp/pact_ls.lua b/nvim/lsp/pact_ls.lua deleted file mode 100755 index d240195..0000000 --- a/nvim/lsp/pact_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/kadena-io/pact-lsp ---- ---- The Pact language server -return { - cmd = { 'pact-lsp' }, - filetypes = { 'pact' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/pasls.lua b/nvim/lsp/pasls.lua deleted file mode 100755 index ef544c9..0000000 --- a/nvim/lsp/pasls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@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' - -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/nvim/lsp/pbls.lua b/nvim/lsp/pbls.lua deleted file mode 100755 index 98ae1fe..0000000 --- a/nvim/lsp/pbls.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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 -return { - cmd = { 'pbls' }, - filetypes = { 'proto' }, - root_markers = { '.pbls.toml', '.git' }, -} diff --git a/nvim/lsp/perlls.lua b/nvim/lsp/perlls.lua deleted file mode 100755 index e1deb61..0000000 --- a/nvim/lsp/perlls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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. -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/nvim/lsp/perlnavigator.lua b/nvim/lsp/perlnavigator.lua deleted file mode 100755 index 0fef69c..0000000 --- a/nvim/lsp/perlnavigator.lua +++ /dev/null @@ -1,26 +0,0 @@ ----@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. -return { - cmd = { 'perlnavigator' }, - filetypes = { 'perl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/perlpls.lua b/nvim/lsp/perlpls.lua deleted file mode 100755 index 7e8c793..0000000 --- a/nvim/lsp/perlpls.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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 -return { - cmd = { 'pls' }, - settings = { - perl = { - perlcritic = { enabled = false }, - syntax = { enabled = true }, - }, - }, - filetypes = { 'perl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/pest_ls.lua b/nvim/lsp/pest_ls.lua deleted file mode 100755 index 8ecf182..0000000 --- a/nvim/lsp/pest_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/pest-parser/pest-ide-tools ---- ---- Language server for pest grammars. -return { - cmd = { 'pest-language-server' }, - filetypes = { 'pest' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/phan.lua b/nvim/lsp/phan.lua deleted file mode 100755 index 50b0a78..0000000 --- a/nvim/lsp/phan.lua +++ /dev/null @@ -1,31 +0,0 @@ ----@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', -} - -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/nvim/lsp/phpactor.lua b/nvim/lsp/phpactor.lua deleted file mode 100755 index 7116e26..0000000 --- a/nvim/lsp/phpactor.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://github.com/phpactor/phpactor ---- ---- Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation - -return { - cmd = { 'phpactor', 'language-server' }, - filetypes = { 'php' }, - root_markers = { '.git', 'composer.json', '.phpactor.json', '.phpactor.yml' }, - workspace_required = true, -} diff --git a/nvim/lsp/pico8_ls.lua b/nvim/lsp/pico8_ls.lua deleted file mode 100755 index 24eb0d7..0000000 --- a/nvim/lsp/pico8_ls.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@brief ---- ---- https://github.com/japhib/pico8-ls ---- ---- Full language support for the PICO-8 dialect of Lua. - -local util = require 'lspconfig.util' - -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/nvim/lsp/please.lua b/nvim/lsp/please.lua deleted file mode 100755 index 116fe51..0000000 --- a/nvim/lsp/please.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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 -return { - cmd = { 'plz', 'tool', 'lps' }, - filetypes = { 'bzl' }, - root_markers = { '.plzconfig' }, -} diff --git a/nvim/lsp/pli.lua b/nvim/lsp/pli.lua deleted file mode 100755 index 4292cad..0000000 --- a/nvim/lsp/pli.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@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). -return { - cmd = { 'pli_language_server' }, - filetypes = { 'pli' }, - root_markers = { '.pliplugin' }, -} diff --git a/nvim/lsp/poryscript_pls.lua b/nvim/lsp/poryscript_pls.lua deleted file mode 100755 index d0ad861..0000000 --- a/nvim/lsp/poryscript_pls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/huderlem/poryscript-pls ---- ---- Language server for poryscript (a high level scripting language for GBA-era Pokémon decompilation projects) -return { - cmd = { 'poryscript-pls' }, - filetypes = { 'pory' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/postgres_lsp.lua b/nvim/lsp/postgres_lsp.lua deleted file mode 100755 index 3ae2669..0000000 --- a/nvim/lsp/postgres_lsp.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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. -return { - cmd = { 'postgrestools', 'lsp-proxy' }, - filetypes = { - 'sql', - }, - root_markers = { 'postgrestools.jsonc' }, -} diff --git a/nvim/lsp/powershell_es.lua b/nvim/lsp/powershell_es.lua deleted file mode 100755 index d734df2..0000000 --- a/nvim/lsp/powershell_es.lua +++ /dev/null @@ -1,55 +0,0 @@ ---- @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 ..."}, ---- }) ---- ``` - -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/nvim/lsp/prismals.lua b/nvim/lsp/prismals.lua deleted file mode 100755 index 41afed2..0000000 --- a/nvim/lsp/prismals.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'prisma-language-server', '--stdio' }, - filetypes = { 'prisma' }, - settings = { - prisma = { - prismaFmtBinPath = '', - }, - }, - root_markers = { '.git', 'package.json' }, -} diff --git a/nvim/lsp/prolog_ls.lua b/nvim/lsp/prolog_ls.lua deleted file mode 100755 index bb8b6f3..0000000 --- a/nvim/lsp/prolog_ls.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@brief ---- ---- https://github.com/jamesnvc/lsp_server ---- ---- Language Server Protocol server for SWI-Prolog -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/nvim/lsp/prosemd_lsp.lua b/nvim/lsp/prosemd_lsp.lua deleted file mode 100755 index af8f988..0000000 --- a/nvim/lsp/prosemd_lsp.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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 -return { - cmd = { 'prosemd-lsp', '--stdio' }, - filetypes = { 'markdown' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/protols.lua b/nvim/lsp/protols.lua deleted file mode 100755 index d534660..0000000 --- a/nvim/lsp/protols.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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. -return { - cmd = { 'protols' }, - filetypes = { 'proto' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/psalm.lua b/nvim/lsp/psalm.lua deleted file mode 100755 index 8ccc96c..0000000 --- a/nvim/lsp/psalm.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/vimeo/psalm ---- ---- Can be installed with composer. ---- ```sh ---- composer global require vimeo/psalm ---- ``` -return { - cmd = { 'psalm', '--language-server' }, - filetypes = { 'php' }, - root_markers = { 'psalm.xml', 'psalm.xml.dist' }, -} diff --git a/nvim/lsp/pug.lua b/nvim/lsp/pug.lua deleted file mode 100755 index 8b8910d..0000000 --- a/nvim/lsp/pug.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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) -return { - cmd = { 'pug-lsp' }, - filetypes = { 'pug' }, - root_markers = { 'package.json' }, -} diff --git a/nvim/lsp/puppet.lua b/nvim/lsp/puppet.lua deleted file mode 100755 index 297e493..0000000 --- a/nvim/lsp/puppet.lua +++ /dev/null @@ -1,26 +0,0 @@ ----@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. -return { - cmd = { 'puppet-languageserver', '--stdio' }, - filetypes = { 'puppet' }, - root_markers = { - 'manifests', - '.puppet-lint.rc', - 'hiera.yaml', - '.git', - }, -} diff --git a/nvim/lsp/purescriptls.lua b/nvim/lsp/purescriptls.lua deleted file mode 100755 index dcec93e..0000000 --- a/nvim/lsp/purescriptls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -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/nvim/lsp/pylsp.lua b/nvim/lsp/pylsp.lua deleted file mode 100755 index bb6fcf9..0000000 --- a/nvim/lsp/pylsp.lua +++ /dev/null @@ -1,39 +0,0 @@ ----@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`. -return { - cmd = { 'pylsp' }, - filetypes = { 'python' }, - root_markers = { - 'pyproject.toml', - 'setup.py', - 'setup.cfg', - 'requirements.txt', - 'Pipfile', - '.git', - }, -} diff --git a/nvim/lsp/pylyzer.lua b/nvim/lsp/pylyzer.lua deleted file mode 100755 index 68c8cb5..0000000 --- a/nvim/lsp/pylyzer.lua +++ /dev/null @@ -1,33 +0,0 @@ ----@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`. -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/nvim/lsp/pyre.lua b/nvim/lsp/pyre.lua deleted file mode 100755 index c46ec42..0000000 --- a/nvim/lsp/pyre.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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`. -return { - cmd = { 'pyre', 'persistent' }, - filetypes = { 'python' }, - root_markers = { '.pyre_configuration' }, -} diff --git a/nvim/lsp/pyrefly.lua b/nvim/lsp/pyrefly.lua deleted file mode 100755 index e8ac037..0000000 --- a/nvim/lsp/pyrefly.lua +++ /dev/null @@ -1,25 +0,0 @@ ----@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. - -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/nvim/lsp/pyright.lua b/nvim/lsp/pyright.lua deleted file mode 100755 index c44fecf..0000000 --- a/nvim/lsp/pyright.lua +++ /dev/null @@ -1,58 +0,0 @@ ----@brief ---- ---- https://github.com/microsoft/pyright ---- ---- `pyright`, a static type checker and language server for python - -local function set_python_path(path) - 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 - -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() - client:exec_cmd({ - command = 'pyright.organizeimports', - arguments = { vim.uri_from_bufnr(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/nvim/lsp/qmlls.lua b/nvim/lsp/qmlls.lua deleted file mode 100755 index 22e7a07..0000000 --- a/nvim/lsp/qmlls.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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/) -return { - cmd = { 'qmlls' }, - filetypes = { 'qml', 'qmljs' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/quick_lint_js.lua b/nvim/lsp/quick_lint_js.lua deleted file mode 100755 index 99645bd..0000000 --- a/nvim/lsp/quick_lint_js.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@brief ---- ---- https://quick-lint-js.com/ ---- ---- quick-lint-js finds bugs in JavaScript programs. ---- ---- See installation [instructions](https://quick-lint-js.com/install/) -return { - cmd = { 'quick-lint-js', '--lsp-server' }, - filetypes = { 'javascript', 'typescript' }, - root_markers = { 'package.json', 'jsconfig.json', '.git' }, -} diff --git a/nvim/lsp/r_language_server.lua b/nvim/lsp/r_language_server.lua deleted file mode 100755 index 8a54df1..0000000 --- a/nvim/lsp/r_language_server.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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") ---- ``` -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/nvim/lsp/racket_langserver.lua b/nvim/lsp/racket_langserver.lua deleted file mode 100755 index a6ac1e2..0000000 --- a/nvim/lsp/racket_langserver.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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` -return { - cmd = { 'racket', '--lib', 'racket-langserver' }, - filetypes = { 'racket', 'scheme' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/raku_navigator.lua b/nvim/lsp/raku_navigator.lua deleted file mode 100755 index aa8f7b7..0000000 --- a/nvim/lsp/raku_navigator.lua +++ /dev/null @@ -1,26 +0,0 @@ ----@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. -return { - cmd = {}, - filetypes = { 'raku' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/reason_ls.lua b/nvim/lsp/reason_ls.lua deleted file mode 100755 index 9fd8002..0000000 --- a/nvim/lsp/reason_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- Reason language server ---- ---- You can install reason language server from [reason-language-server](https://github.com/jaredly/reason-language-server) repository. -return { - cmd = { 'reason-language-server' }, - filetypes = { 'reason' }, - root_markers = { 'bsconfig.json', '.git' }, -} diff --git a/nvim/lsp/regal.lua b/nvim/lsp/regal.lua deleted file mode 100755 index 08fa74b..0000000 --- a/nvim/lsp/regal.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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' - -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/nvim/lsp/regols.lua b/nvim/lsp/regols.lua deleted file mode 100755 index 8953a09..0000000 --- a/nvim/lsp/regols.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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' - -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/nvim/lsp/remark_ls.lua b/nvim/lsp/remark_ls.lua deleted file mode 100755 index 59cdbc2..0000000 --- a/nvim/lsp/remark_ls.lua +++ /dev/null @@ -1,44 +0,0 @@ ----@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 ---- ``` -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/nvim/lsp/rescriptls.lua b/nvim/lsp/rescriptls.lua deleted file mode 100755 index 7f2af38..0000000 --- a/nvim/lsp/rescriptls.lua +++ /dev/null @@ -1,56 +0,0 @@ ----@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, ---- }, ---- }, ---- } ---- ``` -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/nvim/lsp/rls.lua b/nvim/lsp/rls.lua deleted file mode 100755 index c47c94a..0000000 --- a/nvim/lsp/rls.lua +++ /dev/null @@ -1,33 +0,0 @@ ----@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"} ---- ``` -return { - cmd = { 'rls' }, - filetypes = { 'rust' }, - root_markers = { 'Cargo.toml' }, -} diff --git a/nvim/lsp/rnix.lua b/nvim/lsp/rnix.lua deleted file mode 100755 index 8a8f9b3..0000000 --- a/nvim/lsp/rnix.lua +++ /dev/null @@ -1,18 +0,0 @@ ----@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. -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/nvim/lsp/robotcode.lua b/nvim/lsp/robotcode.lua deleted file mode 100755 index 1193a3a..0000000 --- a/nvim/lsp/robotcode.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://robotcode.io ---- ---- RobotCode - Language Server Protocol implementation for Robot Framework. -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/nvim/lsp/robotframework_ls.lua b/nvim/lsp/robotframework_ls.lua deleted file mode 100755 index 5b9b5b5..0000000 --- a/nvim/lsp/robotframework_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/robocorp/robotframework-lsp ---- ---- Language Server Protocol implementation for Robot Framework. -return { - cmd = { 'robotframework_ls' }, - filetypes = { 'robot' }, - root_markers = { 'robotidy.toml', 'pyproject.toml', 'conda.yaml', 'robot.yaml', '.git' }, -} diff --git a/nvim/lsp/roc_ls.lua b/nvim/lsp/roc_ls.lua deleted file mode 100755 index fb0921a..0000000 --- a/nvim/lsp/roc_ls.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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) -return { - cmd = { 'roc_language_server' }, - filetypes = { 'roc' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/rome.lua b/nvim/lsp/rome.lua deleted file mode 100755 index 5afbdac..0000000 --- a/nvim/lsp/rome.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'rome', 'lsp-proxy' }, - filetypes = { - 'javascript', - 'javascriptreact', - 'json', - 'typescript', - 'typescript.tsx', - 'typescriptreact', - }, - root_markers = { 'package.json', 'node_modules', '.git' }, -} diff --git a/nvim/lsp/roslyn_ls.lua b/nvim/lsp/roslyn_ls.lua deleted file mode 100755 index 58da15a..0000000 --- a/nvim/lsp/roslyn_ls.lua +++ /dev/null @@ -1,189 +0,0 @@ ----@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 - ----@param client vim.lsp.Client ----@param target string -local function on_init_sln(client, target) - vim.notify('Initializing: ' .. target, vim.log.levels.INFO, { 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.INFO, { 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 - -local function roslyn_handlers() - return { - ['workspace/projectInitializationComplete'] = function(_, _, ctx) - vim.notify('Roslyn project initialization complete', vim.log.levels.INFO, { title = 'roslyn_ls' }) - - local buffers = vim.lsp.get_buffers_by_client_id(ctx.client_id) - local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) - for _, buf in ipairs(buffers) do - client:request(vim.lsp.protocol.Methods.textDocument_diagnostic, { - textDocument = vim.lsp.util.make_text_document_params(buf), - }, nil, buf) - end - end, - ['workspace/_roslyn_projectHasUnresolvedDependencies'] = function() - vim.notify('Detected missing dependencies. Run `dotnet restore` command.', vim.log.levels.ERROR, { - title = 'roslyn_ls', - }) - 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.ClientConfig -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(), - 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$') ~= 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') 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, - }, - 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/nvim/lsp/rpmspec.lua b/nvim/lsp/rpmspec.lua deleted file mode 100755 index c366ba1..0000000 --- a/nvim/lsp/rpmspec.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'rpm_lsp_server', '--stdio' }, - filetypes = { 'spec' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/rubocop.lua b/nvim/lsp/rubocop.lua deleted file mode 100755 index 619df5c..0000000 --- a/nvim/lsp/rubocop.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- https://github.com/rubocop/rubocop -return { - cmd = { 'rubocop', '--lsp' }, - filetypes = { 'ruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/ruby_lsp.lua b/nvim/lsp/ruby_lsp.lua deleted file mode 100755 index db6c4da..0000000 --- a/nvim/lsp/ruby_lsp.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'ruby-lsp' }, - filetypes = { 'ruby', 'eruby' }, - root_markers = { 'Gemfile', '.git' }, - init_options = { - formatter = 'auto', - }, -} diff --git a/nvim/lsp/ruff.lua b/nvim/lsp/ruff.lua deleted file mode 100755 index 1df0b76..0000000 --- a/nvim/lsp/ruff.lua +++ /dev/null @@ -1,33 +0,0 @@ ----@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. -return { - cmd = { 'ruff', 'server' }, - filetypes = { 'python' }, - root_markers = { 'pyproject.toml', 'ruff.toml', '.ruff.toml', '.git' }, - settings = {}, -} diff --git a/nvim/lsp/ruff_lsp.lua b/nvim/lsp/ruff_lsp.lua deleted file mode 100755 index 127a4e0..0000000 --- a/nvim/lsp/ruff_lsp.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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 = {}, ---- } ---- } ---- }) ---- ``` -return { - cmd = { 'ruff-lsp' }, - filetypes = { 'python' }, - root_markers = { 'pyproject.toml', 'ruff.toml', '.git' }, - settings = {}, -} diff --git a/nvim/lsp/rune_languageserver.lua b/nvim/lsp/rune_languageserver.lua deleted file mode 100755 index fbf3347..0000000 --- a/nvim/lsp/rune_languageserver.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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 -return { - cmd = { 'rune-languageserver' }, - filetypes = { 'rune' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/rust_analyzer.lua b/nvim/lsp/rust_analyzer.lua deleted file mode 100755 index 660442c..0000000 --- a/nvim/lsp/rust_analyzer.lua +++ /dev/null @@ -1,119 +0,0 @@ ----@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' - 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 - -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/nvim/lsp/salt_ls.lua b/nvim/lsp/salt_ls.lua deleted file mode 100755 index 4710478..0000000 --- a/nvim/lsp/salt_ls.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'salt_lsp_server' }, - filetypes = { 'sls' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/scheme_langserver.lua b/nvim/lsp/scheme_langserver.lua deleted file mode 100755 index b3fefa7..0000000 --- a/nvim/lsp/scheme_langserver.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@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. - -local cmd = { 'scheme-langserver', '~/.scheme-langserver.log', 'enable', 'disable' } - -return { - cmd = cmd, - filetypes = { 'scheme' }, - root_markers = { - 'Akku.manifest', - '.git', - }, -} diff --git a/nvim/lsp/scry.lua b/nvim/lsp/scry.lua deleted file mode 100755 index 895c80c..0000000 --- a/nvim/lsp/scry.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/crystal-lang-tools/scry ---- ---- Crystal language server. -return { - cmd = { 'scry' }, - filetypes = { 'crystal' }, - root_markers = { 'shard.yml', '.git' }, -} diff --git a/nvim/lsp/selene3p_ls.lua b/nvim/lsp/selene3p_ls.lua deleted file mode 100755 index 72755cf..0000000 --- a/nvim/lsp/selene3p_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/antonk52/lua-3p-language-servers ---- ---- 3rd party Language Server for Selene lua linter -return { - cmd = { 'selene-3p-language-server' }, - filetypes = { 'lua' }, - root_markers = { 'selene.toml' }, -} diff --git a/nvim/lsp/serve_d.lua b/nvim/lsp/serve_d.lua deleted file mode 100755 index 63e7eb1..0000000 --- a/nvim/lsp/serve_d.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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. -return { - cmd = { 'serve-d' }, - filetypes = { 'd' }, - root_markers = { 'dub.json', 'dub.sdl', '.git' }, -} diff --git a/nvim/lsp/shopify_theme_ls.lua b/nvim/lsp/shopify_theme_ls.lua deleted file mode 100755 index 5415a30..0000000 --- a/nvim/lsp/shopify_theme_ls.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@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. -return { - cmd = { - 'shopify', - 'theme', - 'language-server', - }, - filetypes = { 'liquid' }, - root_markers = { - '.shopifyignore', - '.theme-check.yml', - '.theme-check.yaml', - 'shopify.theme.toml', - }, - settings = {}, -} diff --git a/nvim/lsp/sixtyfps.lua b/nvim/lsp/sixtyfps.lua deleted file mode 100755 index 573c3ad..0000000 --- a/nvim/lsp/sixtyfps.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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 -return { - cmd = { 'sixtyfps-lsp' }, - filetypes = { 'sixtyfps' }, -} diff --git a/nvim/lsp/slangd.lua b/nvim/lsp/slangd.lua deleted file mode 100755 index 6df1c87..0000000 --- a/nvim/lsp/slangd.lua +++ /dev/null @@ -1,36 +0,0 @@ ----@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 - -return { - cmd = { bin_name }, - filetypes = { 'hlsl', 'shaderslang' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/slint_lsp.lua b/nvim/lsp/slint_lsp.lua deleted file mode 100755 index 6090450..0000000 --- a/nvim/lsp/slint_lsp.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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 ]] ---- ``` -return { - cmd = { 'slint-lsp' }, - filetypes = { 'slint' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/smarty_ls.lua b/nvim/lsp/smarty_ls.lua deleted file mode 100755 index 5527c04..0000000 --- a/nvim/lsp/smarty_ls.lua +++ /dev/null @@ -1,35 +0,0 @@ ----@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 ---- ``` - -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/nvim/lsp/smithy_ls.lua b/nvim/lsp/smithy_ls.lua deleted file mode 100755 index 7a53adc..0000000 --- a/nvim/lsp/smithy_ls.lua +++ /dev/null @@ -1,43 +0,0 @@ ----@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 ---- ``` - -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/nvim/lsp/snakeskin_ls.lua b/nvim/lsp/snakeskin_ls.lua deleted file mode 100755 index 5a64776..0000000 --- a/nvim/lsp/snakeskin_ls.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://www.npmjs.com/package/@snakeskin/cli ---- ---- `snakeskin cli` can be installed via `npm`: ---- ```sh ---- npm install -g @snakeskin/cli ---- ``` -return { - cmd = { 'snakeskin-cli', 'lsp', '--stdio' }, - filetypes = { 'ss' }, - root_markers = { 'package.json' }, -} diff --git a/nvim/lsp/snyk_ls.lua b/nvim/lsp/snyk_ls.lua deleted file mode 100755 index f748060..0000000 --- a/nvim/lsp/snyk_ls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@brief ---- ---- https://github.com/snyk/snyk-ls ---- ---- LSP for Snyk Open Source, Snyk Infrastructure as Code, and Snyk Code. -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/nvim/lsp/solang.lua b/nvim/lsp/solang.lua deleted file mode 100755 index 97a6897..0000000 --- a/nvim/lsp/solang.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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. -return { - cmd = { 'solang', 'language-server', '--target', 'evm' }, - filetypes = { 'solidity' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/solargraph.lua b/nvim/lsp/solargraph.lua deleted file mode 100755 index 0d44e99..0000000 --- a/nvim/lsp/solargraph.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@brief ---- ---- https://solargraph.org/ ---- ---- solargraph, a language server for Ruby ---- ---- You can install solargraph via gem install. ---- ---- ```sh ---- gem install --user-install solargraph ---- ``` -return { - cmd = { 'solargraph', 'stdio' }, - settings = { - solargraph = { - diagnostics = true, - }, - }, - init_options = { formatting = true }, - filetypes = { 'ruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/solc.lua b/nvim/lsp/solc.lua deleted file mode 100755 index 0e03bab..0000000 --- a/nvim/lsp/solc.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@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' - -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/nvim/lsp/solidity.lua b/nvim/lsp/solidity.lua deleted file mode 100755 index 3a20e66..0000000 --- a/nvim/lsp/solidity.lua +++ /dev/null @@ -1,40 +0,0 @@ ----@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. -return { - cmd = { 'solidity-ls', '--stdio' }, - filetypes = { 'solidity' }, - root_markers = { '.git', 'package.json' }, - settings = { solidity = { includePath = '', remapping = {} } }, -} diff --git a/nvim/lsp/solidity_ls.lua b/nvim/lsp/solidity_ls.lua deleted file mode 100755 index 01b15d7..0000000 --- a/nvim/lsp/solidity_ls.lua +++ /dev/null @@ -1,26 +0,0 @@ ----@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. -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/nvim/lsp/solidity_ls_nomicfoundation.lua b/nvim/lsp/solidity_ls_nomicfoundation.lua deleted file mode 100755 index fb24b1c..0000000 --- a/nvim/lsp/solidity_ls_nomicfoundation.lua +++ /dev/null @@ -1,26 +0,0 @@ ----@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. -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/nvim/lsp/somesass_ls.lua b/nvim/lsp/somesass_ls.lua deleted file mode 100755 index 9d2d092..0000000 --- a/nvim/lsp/somesass_ls.lua +++ /dev/null @@ -1,28 +0,0 @@ ----@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. -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/nvim/lsp/sorbet.lua b/nvim/lsp/sorbet.lua deleted file mode 100755 index 637a4e1..0000000 --- a/nvim/lsp/sorbet.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'srb', 'tc', '--lsp' }, - filetypes = { 'ruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/sourcekit.lua b/nvim/lsp/sourcekit.lua deleted file mode 100755 index 4292b5f..0000000 --- a/nvim/lsp/sourcekit.lua +++ /dev/null @@ -1,39 +0,0 @@ ----@brief ---- ---- https://github.com/swiftlang/sourcekit-lsp ---- ---- Language server for Swift and C/C++/Objective-C. - -local util = require 'lspconfig.util' - -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/nvim/lsp/spectral.lua b/nvim/lsp/spectral.lua deleted file mode 100755 index ea8a720..0000000 --- a/nvim/lsp/spectral.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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. - -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/nvim/lsp/spyglassmc_language_server.lua b/nvim/lsp/spyglassmc_language_server.lua deleted file mode 100755 index f1f0072..0000000 --- a/nvim/lsp/spyglassmc_language_server.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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. -return { - cmd = { 'spyglassmc-language-server', '--stdio' }, - filetypes = { 'mcfunction' }, - root_markers = { 'pack.mcmeta' }, -} diff --git a/nvim/lsp/sqlls.lua b/nvim/lsp/sqlls.lua deleted file mode 100755 index aebd4c9..0000000 --- a/nvim/lsp/sqlls.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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). - -return { - cmd = { 'sql-language-server', 'up', '--method', 'stdio' }, - filetypes = { 'sql', 'mysql' }, - root_markers = { '.sqllsrc.json' }, - settings = {}, -} diff --git a/nvim/lsp/sqls.lua b/nvim/lsp/sqls.lua deleted file mode 100755 index 25dec93..0000000 --- a/nvim/lsp/sqls.lua +++ /dev/null @@ -1,17 +0,0 @@ ----@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). -return { - cmd = { 'sqls' }, - filetypes = { 'sql', 'mysql' }, - root_markers = { 'config.yml' }, - settings = {}, -} diff --git a/nvim/lsp/sqruff.lua b/nvim/lsp/sqruff.lua deleted file mode 100755 index 7fcdc1e..0000000 --- a/nvim/lsp/sqruff.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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) ---- -return { - cmd = { 'sqruff', 'lsp' }, - filetypes = { 'sql' }, - root_markers = { '.sqruff', '.git' }, -} diff --git a/nvim/lsp/standardrb.lua b/nvim/lsp/standardrb.lua deleted file mode 100755 index 91ab2ce..0000000 --- a/nvim/lsp/standardrb.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/testdouble/standard ---- ---- Ruby Style Guide, with linter & automatic code fixer. -return { - cmd = { 'standardrb', '--lsp' }, - filetypes = { 'ruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/starlark_rust.lua b/nvim/lsp/starlark_rust.lua deleted file mode 100755 index 0954c98..0000000 --- a/nvim/lsp/starlark_rust.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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 -return { - cmd = { 'starlark', '--lsp' }, - filetypes = { 'star', 'bzl', 'BUILD.bazel' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/starpls.lua b/nvim/lsp/starpls.lua deleted file mode 100755 index c73fae6..0000000 --- a/nvim/lsp/starpls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/withered-magic/starpls ---- ---- `starpls` is an LSP implementation for Starlark. Installation instructions can be found in the project's README. -return { - cmd = { 'starpls' }, - filetypes = { 'bzl' }, - root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' }, -} diff --git a/nvim/lsp/statix.lua b/nvim/lsp/statix.lua deleted file mode 100755 index 2d15249..0000000 --- a/nvim/lsp/statix.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/nerdypepper/statix ---- ---- lints and suggestions for the nix programming language -return { - cmd = { 'statix', 'check', '--stdin' }, - filetypes = { 'nix' }, - root_markers = { 'flake.nix', '.git' }, -} diff --git a/nvim/lsp/steep.lua b/nvim/lsp/steep.lua deleted file mode 100755 index 760f97c..0000000 --- a/nvim/lsp/steep.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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`. -return { - cmd = { 'steep', 'langserver' }, - filetypes = { 'ruby', 'eruby' }, - root_markers = { 'Steepfile', '.git' }, -} diff --git a/nvim/lsp/stimulus_ls.lua b/nvim/lsp/stimulus_ls.lua deleted file mode 100755 index 729d0b5..0000000 --- a/nvim/lsp/stimulus_ls.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'stimulus-language-server', '--stdio' }, - filetypes = { 'html', 'ruby', 'eruby', 'blade', 'php' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/stylelint_lsp.lua b/nvim/lsp/stylelint_lsp.lua deleted file mode 100755 index 9d11eec..0000000 --- a/nvim/lsp/stylelint_lsp.lua +++ /dev/null @@ -1,54 +0,0 @@ ----@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') - -return { - cmd = { 'stylelint-lsp', '--stdio' }, - filetypes = { - 'astro', - 'css', - 'html', - 'less', - 'scss', - 'sugarss', - 'vue', - 'wxss', - }, - root_markers = root_file, - settings = {}, -} diff --git a/nvim/lsp/stylua3p_ls.lua b/nvim/lsp/stylua3p_ls.lua deleted file mode 100755 index 9bd7d76..0000000 --- a/nvim/lsp/stylua3p_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/antonk52/lua-3p-language-servers ---- ---- 3rd party Language Server for Stylua lua formatter -return { - cmd = { 'stylua-3p-language-server' }, - filetypes = { 'lua' }, - root_markers = { '.stylua.toml', 'stylua.toml' }, -} diff --git a/nvim/lsp/superhtml.lua b/nvim/lsp/superhtml.lua deleted file mode 100755 index 581e4ce..0000000 --- a/nvim/lsp/superhtml.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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' } ---- }) ---- ``` -return { - cmd = { 'superhtml', 'lsp' }, - filetypes = { 'superhtml', 'html' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/svelte.lua b/nvim/lsp/svelte.lua deleted file mode 100755 index f18baf1..0000000 --- a/nvim/lsp/svelte.lua +++ /dev/null @@ -1,41 +0,0 @@ ----@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 ---- ``` - -return { - cmd = { 'svelteserver', '--stdio' }, - filetypes = { 'svelte' }, - root_dir = function(bufnr, on_dir) - local root_files = { 'package.json', '.git' } - 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 - on_dir(vim.fs.dirname(vim.fs.find(root_files, { path = fname, upward = true })[1])) - 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('svelte_js_ts_file_watch', {}), - 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({ - command = 'migrate_to_svelte_5', - arguments = { vim.uri_from_bufnr(bufnr) }, - }) - end, { desc = 'Migrate Component to Svelte 5 Syntax' }) - end, -} diff --git a/nvim/lsp/svlangserver.lua b/nvim/lsp/svlangserver.lua deleted file mode 100755 index 9e205e2..0000000 --- a/nvim/lsp/svlangserver.lua +++ /dev/null @@ -1,45 +0,0 @@ ----@brief ---- ---- https://github.com/imc-trading/svlangserver ---- ---- Language server for SystemVerilog. ---- ---- `svlangserver` can be installed via `npm`: ---- ---- ```sh ---- $ npm install -g @imc-trading/svlangserver ---- ``` - -local function build_index() - local params = { - command = 'systemverilog.build_index', - } - vim.lsp.buf.execute_command(params) -end - -local function report_hierarchy() - local params = { - command = 'systemverilog.report_hierarchy', - arguments = { vim.fn.expand '<cword>' }, - } - vim.lsp.buf.execute_command(params) -end - -return { - cmd = { 'svlangserver' }, - filetypes = { 'verilog', 'systemverilog' }, - root_markers = { '.svlangserver', '.git' }, - settings = { - systemverilog = { - includeIndexing = { '*.{v,vh,sv,svh}', '**/*.{v,vh,sv,svh}' }, - }, - }, - on_attach = function(_, bufnr) - vim.api.nvim_buf_create_user_command(bufnr, 'LspSvlangserverBuildIndex', build_index, { - desc = 'Instructs language server to rerun indexing', - }) - vim.api.nvim_buf_create_user_command(bufnr, 'LspSvlangserverReportHierarchy', report_hierarchy, { - desc = 'Generates hierarchy for the given module', - }) - end, -} diff --git a/nvim/lsp/svls.lua b/nvim/lsp/svls.lua deleted file mode 100755 index 114e31e..0000000 --- a/nvim/lsp/svls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@brief ---- ---- https://github.com/dalance/svls ---- ---- Language server for verilog and SystemVerilog ---- ---- `svls` can be installed via `cargo`: ---- ```sh ---- cargo install svls ---- ``` -return { - cmd = { 'svls' }, - filetypes = { 'verilog', 'systemverilog' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/swift_mesonls.lua b/nvim/lsp/swift_mesonls.lua deleted file mode 100755 index 810864c..0000000 --- a/nvim/lsp/swift_mesonls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/JCWasmx86/Swift-MesonLSP ---- ---- Meson language server written in Swift -return { - cmd = { 'Swift-MesonLSP', '--lsp' }, - filetypes = { 'meson' }, - root_markers = { 'meson.build', 'meson_options.txt', 'meson.options', '.git' }, -} diff --git a/nvim/lsp/syntax_tree.lua b/nvim/lsp/syntax_tree.lua deleted file mode 100755 index c50f797..0000000 --- a/nvim/lsp/syntax_tree.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'stree', 'lsp' }, - filetypes = { 'ruby' }, - root_markers = { '.streerc', 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/systemd_ls.lua b/nvim/lsp/systemd_ls.lua deleted file mode 100755 index 409ab63..0000000 --- a/nvim/lsp/systemd_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 -return { - cmd = { 'systemd-language-server' }, - filetypes = { 'systemd' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/tabby_ml.lua b/nvim/lsp/tabby_ml.lua deleted file mode 100755 index c1012bf..0000000 --- a/nvim/lsp/tabby_ml.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'tabby-agent', '--lsp', '--stdio' }, - filetypes = {}, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/tailwindcss.lua b/nvim/lsp/tailwindcss.lua deleted file mode 100755 index 8eb067a..0000000 --- a/nvim/lsp/tailwindcss.lua +++ /dev/null @@ -1,134 +0,0 @@ ----@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' - -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/nvim/lsp/taplo.lua b/nvim/lsp/taplo.lua deleted file mode 100755 index 4de4c8d..0000000 --- a/nvim/lsp/taplo.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'taplo', 'lsp', 'stdio' }, - filetypes = { 'toml' }, - root_markers = { '.taplo.toml', 'taplo.toml', '.git' }, -} diff --git a/nvim/lsp/tblgen_lsp_server.lua b/nvim/lsp/tblgen_lsp_server.lua deleted file mode 100755 index c99682a..0000000 --- a/nvim/lsp/tblgen_lsp_server.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@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 - -return { - cmd = get_command(), - filetypes = { 'tablegen' }, - root_markers = { 'tablegen_compile_commands.yml', '.git' }, -} diff --git a/nvim/lsp/teal_ls.lua b/nvim/lsp/teal_ls.lua deleted file mode 100755 index 79c0367..0000000 --- a/nvim/lsp/teal_ls.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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 -return { - cmd = { - 'teal-language-server', - }, - filetypes = { - 'teal', - }, - root_markers = { 'tlconfig.lua' }, -} diff --git a/nvim/lsp/templ.lua b/nvim/lsp/templ.lua deleted file mode 100755 index ea4fdc3..0000000 --- a/nvim/lsp/templ.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://templ.guide ---- ---- The official language server for the templ HTML templating language. -return { - cmd = { 'templ', 'lsp' }, - filetypes = { 'templ' }, - root_markers = { 'go.work', 'go.mod', '.git' }, -} diff --git a/nvim/lsp/termux_language_server.lua b/nvim/lsp/termux_language_server.lua deleted file mode 100755 index a7dc44c..0000000 --- a/nvim/lsp/termux_language_server.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/termux/termux-language-server ---- ---- Language server for various bash scripts such as Arch PKGBUILD, Gentoo ebuild, Termux build.sh, etc. -return { - cmd = { 'termux-language-server' }, - filetypes = { 'PKGBUILD' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/terraform_lsp.lua b/nvim/lsp/terraform_lsp.lua deleted file mode 100755 index 2a4e714..0000000 --- a/nvim/lsp/terraform_lsp.lua +++ /dev/null @@ -1,34 +0,0 @@ ----@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) -return { - cmd = { 'terraform-lsp' }, - filetypes = { 'terraform', 'hcl' }, - root_markers = { '.terraform', '.git' }, -} diff --git a/nvim/lsp/terraformls.lua b/nvim/lsp/terraformls.lua deleted file mode 100755 index 7b8c9d7..0000000 --- a/nvim/lsp/terraformls.lua +++ /dev/null @@ -1,38 +0,0 @@ ----@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). -return { - cmd = { 'terraform-ls', 'serve' }, - filetypes = { 'terraform', 'terraform-vars' }, - root_markers = { '.terraform', '.git' }, -} diff --git a/nvim/lsp/texlab.lua b/nvim/lsp/texlab.lua deleted file mode 100755 index dbff0bb..0000000 --- a/nvim/lsp/texlab.lua +++ /dev/null @@ -1,221 +0,0 @@ ----@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. - -local function client_with_fn(fn) - return function() - local bufnr = vim.api.nvim_get_current_buf() - local client = vim.lsp.get_clients({ bufnr = bufnr, name = 'texlab' })[1] - if not client then - return vim.notify(('texlab client not found in bufnr %d'):format(bufnr), vim.log.levels.ERROR) - end - fn(client, bufnr) - end -end - -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) - if vim.fn.has 'nvim-0.11' == 1 then - return client:exec_cmd({ - title = 'cancel', - command = 'texlab.cancelBuild', - }, { bufnr = bufnr }) - end - vim.lsp.buf.execute_command { command = 'texlab.cancelBuild' } - vim.notify('Build cancelled', vim.log.levels.INFO) -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', - CancelBuild = 'texlab.cancelBuild', - } - return function(client, bufnr) - if vim.fn.has 'nvim-0.11' == 1 then - 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 - - vim.lsp.buf.execute_command { - command = cmd_tbl[cmd], - arguments = { { uri = vim.uri_from_bufnr(bufnr) } }, - } - vim.notify(('command %s executed successfully'):format(cmd_tbl[cmd])) - 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, - border = 'single', - title = 'Environments', - }) - end) -end - -local function buf_change_env(client, bufnr) - local new = vim.fn.input 'Enter the new environment name: ' - if not new or new == '' then - return vim.notify('No environment name provided', vim.log.levels.WARN) - end - local pos = vim.api.nvim_win_get_cursor(0) - if vim.fn.has 'nvim-0.11' == 1 then - 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(new), - }, - }, - }, { bufnr = bufnr }) - end - - vim.lsp.buf.execute_command { - command = 'texlab.changeEnvironment', - arguments = { - { - textDocument = { uri = vim.uri_from_bufnr(bufnr) }, - position = { line = pos[1] - 1, character = pos[2] }, - newName = tostring(new), - }, - }, - } -end - -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(_, buf) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabBuild', client_with_fn(buf_build), { - desc = 'Build the current buffer', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabForward', client_with_fn(buf_search), { - desc = 'Forward search from current position', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabCancelBuild', client_with_fn(buf_cancel_build), { - desc = 'Cancel the current build', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabDependencyGraph', client_with_fn(dependency_graph), { - desc = 'Show the dependency graph', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabCleanArtifacts', client_with_fn(command_factory('Artifacts')), { - desc = 'Clean the artifacts', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabCleanAuxiliary', client_with_fn(command_factory('Auxiliary')), { - desc = 'Clean the auxiliary files', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabFindEnvironments', client_with_fn(buf_find_envs), { - desc = 'Find the environments at current position', - }) - vim.api.nvim_buf_create_user_command(buf, 'LspTexlabChangeEnvironment', client_with_fn(buf_change_env), { - desc = 'Change the environment at current position', - }) - end, -} diff --git a/nvim/lsp/textlsp.lua b/nvim/lsp/textlsp.lua deleted file mode 100755 index 5a95a0e..0000000 --- a/nvim/lsp/textlsp.lua +++ /dev/null @@ -1,43 +0,0 @@ ----@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` -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/nvim/lsp/tflint.lua b/nvim/lsp/tflint.lua deleted file mode 100755 index e583799..0000000 --- a/nvim/lsp/tflint.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@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. -return { - cmd = { 'tflint', '--langserver' }, - filetypes = { 'terraform' }, - root_markers = { '.terraform', '.git', '.tflint.hcl' }, -} diff --git a/nvim/lsp/theme_check.lua b/nvim/lsp/theme_check.lua deleted file mode 100755 index 6698031..0000000 --- a/nvim/lsp/theme_check.lua +++ /dev/null @@ -1,23 +0,0 @@ ----@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' } ---- }) ---- ``` - -return { - cmd = { 'theme-check-language-server', '--stdio' }, - filetypes = { 'liquid' }, - root_markers = { '.theme-check.yml' }, - settings = {}, -} diff --git a/nvim/lsp/thriftls.lua b/nvim/lsp/thriftls.lua deleted file mode 100755 index 2d7b1d7..0000000 --- a/nvim/lsp/thriftls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/joyme123/thrift-ls ---- ---- you can install thriftls by mason or download binary here: https://github.com/joyme123/thrift-ls/releases -return { - cmd = { 'thriftls' }, - filetypes = { 'thrift' }, - root_markers = { '.thrift' }, -} diff --git a/nvim/lsp/tilt_ls.lua b/nvim/lsp/tilt_ls.lua deleted file mode 100755 index 83464f0..0000000 --- a/nvim/lsp/tilt_ls.lua +++ /dev/null @@ -1,16 +0,0 @@ ----@brief ---- ---- https://github.com/tilt-dev/tilt ---- ---- Tilt language server. ---- ---- You might need to add filetype detection manually: ---- ---- ```vim ---- autocmd BufRead Tiltfile setf=tiltfile ---- ``` -return { - cmd = { 'tilt', 'lsp', 'start' }, - filetypes = { 'tiltfile' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/tinymist.lua b/nvim/lsp/tinymist.lua deleted file mode 100755 index 3b182a6..0000000 --- a/nvim/lsp/tinymist.lua +++ /dev/null @@ -1,75 +0,0 @@ ----@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 ----@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 - ---Execute the Tinymist command, supporting both 0.10 and 0.11 exec methods - ---@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 - if vim.fn.has 'nvim-0.11' == 1 then - -- For Neovim 0.11+ - return client:exec_cmd({ - title = title_str, - command = command_name, - arguments = arguments, - }, { bufnr = bufnr }, handler) - else - return vim.notify('Tinymist commands require Neovim 0.11+', vim.log.levels.WARN) - end - end - -- Construct a readable command name/desc - local cmd_name = export_type and ('LspTinymistExport' .. cmd_display) or ('LspTinymist' .. 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 - -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, cmd_name, cmd_func, { nargs = 0, desc = cmd_desc }) - end - end, -} diff --git a/nvim/lsp/tofu_ls.lua b/nvim/lsp/tofu_ls.lua deleted file mode 100755 index dc006ab..0000000 --- a/nvim/lsp/tofu_ls.lua +++ /dev/null @@ -1,9 +0,0 @@ ----@brief ---- ---- [OpenTofu Language Server](https://github.com/opentofu/tofu-ls) ---- -return { - cmd = { 'tofu-ls', 'serve' }, - filetypes = { 'opentofu', 'opentofu-vars' }, - root_markers = { '.terraform', '.git' }, -} diff --git a/nvim/lsp/tombi.lua b/nvim/lsp/tombi.lua deleted file mode 100755 index 9200068..0000000 --- a/nvim/lsp/tombi.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- ---- https://tombi-toml.github.io/tombi/ ---- ---- Language server for Tombi, a TOML toolkit. ---- -return { - cmd = { 'tombi', 'lsp' }, - filetypes = { 'toml' }, - root_markers = { 'tombi.toml', 'pyproject.toml', '.git' }, -} diff --git a/nvim/lsp/ts_ls.lua b/nvim/lsp/ts_ls.lua deleted file mode 100755 index e3cc99b..0000000 --- a/nvim/lsp/ts_ls.lua +++ /dev/null @@ -1,104 +0,0 @@ ----@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 - -return { - init_options = { hostInfo = 'neovim' }, - cmd = { 'typescript-language-server', '--stdio' }, - filetypes = { - 'javascript', - 'javascriptreact', - 'javascript.jsx', - 'typescript', - 'typescriptreact', - 'typescript.tsx', - }, - root_markers = { 'tsconfig.json', 'jsconfig.json', 'package.json', '.git' }, - 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/nvim/lsp/ts_query_ls.lua b/nvim/lsp/ts_query_ls.lua deleted file mode 100755 index 1886f43..0000000 --- a/nvim/lsp/ts_query_ls.lua +++ /dev/null @@ -1,39 +0,0 @@ ----@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', { ---- settings = { ---- parser_install_directories = { ---- -- If using nvim-treesitter with lazy.nvim ---- vim.fs.joinpath( ---- vim.fn.stdpath('data'), ---- '/lazy/nvim-treesitter/parser/' ---- ), ---- }, ---- -- This setting is provided by default ---- parser_aliases = { ---- ecma = 'javascript', ---- jsx = 'javascript', ---- php_only = 'php', ---- }, ---- -- E.g. zed support ---- language_retrieval_patterns = { ---- 'languages/src/([^/]+)/[^/]+\\.scm$', ---- }, ---- }, ---- }) ---- ``` -return { - cmd = { 'ts_query_ls' }, - filetypes = { 'query' }, - root_markers = { 'queries', '.git' }, - settings = { - parser_aliases = { - ecma = 'javascript', - jsx = 'javascript', - php_only = 'php', - }, - }, -} diff --git a/nvim/lsp/tsp_server.lua b/nvim/lsp/tsp_server.lua deleted file mode 100755 index 6e9b8d8..0000000 --- a/nvim/lsp/tsp_server.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'tsp-server', '--stdio' }, - filetypes = { 'typespec' }, - root_markers = { 'tspconfig.yaml', '.git' }, -} diff --git a/nvim/lsp/ttags.lua b/nvim/lsp/ttags.lua deleted file mode 100755 index d1cfff1..0000000 --- a/nvim/lsp/ttags.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- https://github.com/npezza93/ttags -return { - cmd = { 'ttags', 'lsp' }, - filetypes = { 'ruby', 'rust', 'javascript', 'haskell' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/turbo_ls.lua b/nvim/lsp/turbo_ls.lua deleted file mode 100755 index a071693..0000000 --- a/nvim/lsp/turbo_ls.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'turbo-language-server', '--stdio' }, - filetypes = { 'html', 'ruby', 'eruby', 'blade', 'php' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/turtle_ls.lua b/nvim/lsp/turtle_ls.lua deleted file mode 100755 index ad28d9c..0000000 --- a/nvim/lsp/turtle_ls.lua +++ /dev/null @@ -1,38 +0,0 @@ ----@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 - -return { - cmd = { 'node', full_path, '--stdio' }, - filetypes = { 'turtle', 'ttl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/tvm_ffi_navigator.lua b/nvim/lsp/tvm_ffi_navigator.lua deleted file mode 100755 index d4ddcda..0000000 --- a/nvim/lsp/tvm_ffi_navigator.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -return { - cmd = { 'python', '-m', 'ffi_navigator.langserver' }, - filetypes = { 'python', 'cpp' }, - root_markers = { 'pyproject.toml', '.git' }, -} diff --git a/nvim/lsp/twiggy_language_server.lua b/nvim/lsp/twiggy_language_server.lua deleted file mode 100755 index 0ccf60b..0000000 --- a/nvim/lsp/twiggy_language_server.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@brief ---- ---- https://github.com/moetelo/twiggy ---- ---- `twiggy-language-server` can be installed via `npm`: ---- ```sh ---- npm install -g twiggy-language-server ---- ``` -return { - cmd = { 'twiggy-language-server', '--stdio' }, - filetypes = { 'twig' }, - root_markers = { 'composer.json', '.git' }, -} diff --git a/nvim/lsp/ty.lua b/nvim/lsp/ty.lua deleted file mode 100755 index b478e70..0000000 --- a/nvim/lsp/ty.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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). -return { - cmd = { 'ty', 'server' }, - filetypes = { 'python' }, - root_markers = { 'ty.toml', 'pyproject.toml', '.git' }, -} diff --git a/nvim/lsp/typeprof.lua b/nvim/lsp/typeprof.lua deleted file mode 100755 index 209eb3a..0000000 --- a/nvim/lsp/typeprof.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/ruby/typeprof ---- ---- `typeprof` is the built-in analysis and LSP tool for Ruby 3.1+. -return { - cmd = { 'typeprof', '--lsp', '--stdio' }, - filetypes = { 'ruby', 'eruby' }, - root_markers = { 'Gemfile', '.git' }, -} diff --git a/nvim/lsp/typos_lsp.lua b/nvim/lsp/typos_lsp.lua deleted file mode 100755 index 645906b..0000000 --- a/nvim/lsp/typos_lsp.lua +++ /dev/null @@ -1,13 +0,0 @@ ----@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 -return { - cmd = { 'typos-lsp' }, - root_markers = { 'typos.toml', '_typos.toml', '.typos.toml', 'pyproject.toml', 'Cargo.toml' }, - settings = {}, -} diff --git a/nvim/lsp/typst_lsp.lua b/nvim/lsp/typst_lsp.lua deleted file mode 100755 index 2705e49..0000000 --- a/nvim/lsp/typst_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/nvarner/typst-lsp ---- ---- Language server for Typst. -return { - cmd = { 'typst-lsp' }, - filetypes = { 'typst' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/uiua.lua b/nvim/lsp/uiua.lua deleted file mode 100755 index 3d210d3..0000000 --- a/nvim/lsp/uiua.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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` -return { - cmd = { 'uiua', 'lsp' }, - filetypes = { 'uiua' }, - root_markers = { 'main.ua', '.fmt.ua', '.git' }, -} diff --git a/nvim/lsp/ungrammar_languageserver.lua b/nvim/lsp/ungrammar_languageserver.lua deleted file mode 100755 index f7d9ceb..0000000 --- a/nvim/lsp/ungrammar_languageserver.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'ungrammar-languageserver', '--stdio' }, - filetypes = { 'ungrammar' }, - root_markers = { '.git' }, - settings = { - ungrammar = { - validate = { - enable = true, - }, - format = { - enable = true, - }, - }, - }, -} diff --git a/nvim/lsp/unison.lua b/nvim/lsp/unison.lua deleted file mode 100755 index d4fb118..0000000 --- a/nvim/lsp/unison.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@brief ---- ---- https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown - -local util = require 'lspconfig.util' - -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/nvim/lsp/unocss.lua b/nvim/lsp/unocss.lua deleted file mode 100755 index 2c99512..0000000 --- a/nvim/lsp/unocss.lua +++ /dev/null @@ -1,39 +0,0 @@ ----@brief ---- ---- https://github.com/xna00/unocss-language-server ---- ---- UnoCSS Language Server can be installed via npm: ---- ```sh ---- npm i unocss-language-server -g ---- ``` -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/nvim/lsp/uvls.lua b/nvim/lsp/uvls.lua deleted file mode 100755 index 7b78c09..0000000 --- a/nvim/lsp/uvls.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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]]) ---- ``` -return { - cmd = { 'uvls' }, - filetypes = { 'uvl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/v_analyzer.lua b/nvim/lsp/v_analyzer.lua deleted file mode 100755 index 1a9a92c..0000000 --- a/nvim/lsp/v_analyzer.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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). -return { - cmd = { 'v-analyzer' }, - filetypes = { 'v', 'vsh', 'vv' }, - root_markers = { 'v.mod', '.git' }, -} diff --git a/nvim/lsp/vacuum.lua b/nvim/lsp/vacuum.lua deleted file mode 100755 index 709f8b0..0000000 --- a/nvim/lsp/vacuum.lua +++ /dev/null @@ -1,21 +0,0 @@ ----@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', ---- }, ---- } ---- ``` -return { - cmd = { 'vacuum', 'language-server' }, - filetypes = { 'yaml.openapi', 'json.openapi' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/vala_ls.lua b/nvim/lsp/vala_ls.lua deleted file mode 100755 index a2d9059..0000000 --- a/nvim/lsp/vala_ls.lua +++ /dev/null @@ -1,34 +0,0 @@ ----@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 - -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/nvim/lsp/vale_ls.lua b/nvim/lsp/vale_ls.lua deleted file mode 100755 index 336c1a4..0000000 --- a/nvim/lsp/vale_ls.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/errata-ai/vale-ls ---- ---- An implementation of the Language Server Protocol (LSP) for the Vale command-line tool. -return { - cmd = { 'vale-ls' }, - filetypes = { 'markdown', 'text', 'tex', 'rst' }, - root_markers = { '.vale.ini' }, -} diff --git a/nvim/lsp/vectorcode_server.lua b/nvim/lsp/vectorcode_server.lua deleted file mode 100755 index 4a59180..0000000 --- a/nvim/lsp/vectorcode_server.lua +++ /dev/null @@ -1,9 +0,0 @@ ----@brief ---- https://github.com/Davidyz/VectorCode ---- ---- A Language Server Protocol implementation for VectorCode, a code repository indexing tool. -return { - cmd = { 'vectorcode-server' }, - root_dir = vim.fs.root(0, { '.vectorcode', '.git' }), - settings = {}, -} diff --git a/nvim/lsp/verible.lua b/nvim/lsp/verible.lua deleted file mode 100755 index ae0addc..0000000 --- a/nvim/lsp/verible.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@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. -return { - cmd = { 'verible-verilog-ls' }, - filetypes = { 'systemverilog', 'verilog' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/veridian.lua b/nvim/lsp/veridian.lua deleted file mode 100755 index cb533c9..0000000 --- a/nvim/lsp/veridian.lua +++ /dev/null @@ -1,22 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'veridian' }, - filetypes = { 'systemverilog', 'verilog' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/veryl_ls.lua b/nvim/lsp/veryl_ls.lua deleted file mode 100755 index 53779e4..0000000 --- a/nvim/lsp/veryl_ls.lua +++ /dev/null @@ -1,15 +0,0 @@ ----@brief ---- ---- https://github.com/veryl-lang/veryl ---- ---- Language server for Veryl ---- ---- `veryl-ls` can be installed via `cargo`: ---- ```sh ---- cargo install veryl-ls ---- ``` -return { - cmd = { 'veryl-ls' }, - filetypes = { 'veryl' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/vespa_ls.lua b/nvim/lsp/vespa_ls.lua deleted file mode 100755 index 883005a..0000000 --- a/nvim/lsp/vespa_ls.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@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', ---- }, ---- } - -return { - cmd = { 'java', '-jar', 'vespa-language-server.jar' }, - filetypes = { 'sd', 'profile', 'yql' }, - root_markers = { - '.git', - }, -} diff --git a/nvim/lsp/vhdl_ls.lua b/nvim/lsp/vhdl_ls.lua deleted file mode 100755 index 5ca6810..0000000 --- a/nvim/lsp/vhdl_ls.lua +++ /dev/null @@ -1,36 +0,0 @@ ----@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' ---- ] ---- ``` -return { - cmd = { 'vhdl_ls' }, - filetypes = { 'vhd', 'vhdl' }, - root_markers = { - 'vhdl_ls.toml', - '.vhdl_ls.toml', - }, -} diff --git a/nvim/lsp/vimls.lua b/nvim/lsp/vimls.lua deleted file mode 100755 index 32cf93f..0000000 --- a/nvim/lsp/vimls.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@brief ---- ---- https://github.com/iamcco/vim-language-server ---- ---- You can install vim-language-server via npm: ---- ```sh ---- npm install -g vim-language-server ---- ``` -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/nvim/lsp/visualforce_ls.lua b/nvim/lsp/visualforce_ls.lua deleted file mode 100755 index 6b19b9e..0000000 --- a/nvim/lsp/visualforce_ls.lua +++ /dev/null @@ -1,29 +0,0 @@ ----@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' ---- } ---- }) ---- ``` -return { - filetypes = { 'visualforce' }, - root_markers = { 'sfdx-project.json' }, - init_options = { - embeddedLanguages = { - css = true, - javascript = true, - }, - }, -} diff --git a/nvim/lsp/vls.lua b/nvim/lsp/vls.lua deleted file mode 100755 index b407667..0000000 --- a/nvim/lsp/vls.lua +++ /dev/null @@ -1,12 +0,0 @@ ----@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). -return { - cmd = { 'v', 'ls' }, - filetypes = { 'v', 'vlang' }, - root_markers = { 'v.mod', '.git' }, -} diff --git a/nvim/lsp/volar.lua b/nvim/lsp/volar.lua deleted file mode 100755 index bfa4bc9..0000000 --- a/nvim/lsp/volar.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- Renamed to [vue_ls](#vue_ls) ---- ---- -vim.deprecate('volar', 'vue_ls', '3.0.0', 'lspconfig', false) - -return vim.lsp.config.vue_ls diff --git a/nvim/lsp/vscoqtop.lua b/nvim/lsp/vscoqtop.lua deleted file mode 100755 index 9eb353c..0000000 --- a/nvim/lsp/vscoqtop.lua +++ /dev/null @@ -1,8 +0,0 @@ ----@brief ---- ---- https://github.com/coq-community/vscoq -return { - cmd = { 'vscoqtop' }, - filetypes = { 'coq' }, - root_markers = { '_CoqProject', '.git' }, -} diff --git a/nvim/lsp/vtsls.lua b/nvim/lsp/vtsls.lua deleted file mode 100755 index 7b8c0b3..0000000 --- a/nvim/lsp/vtsls.lua +++ /dev/null @@ -1,72 +0,0 @@ ----@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. - -return { - cmd = { 'vtsls', '--stdio' }, - filetypes = { - 'javascript', - 'javascriptreact', - 'javascript.jsx', - 'typescript', - 'typescriptreact', - 'typescript.tsx', - }, - root_markers = { 'tsconfig.json', 'package.json', 'jsconfig.json', '.git' }, -} diff --git a/nvim/lsp/vue_ls.lua b/nvim/lsp/vue_ls.lua deleted file mode 100755 index 3900802..0000000 --- a/nvim/lsp/vue_ls.lua +++ /dev/null @@ -1,50 +0,0 @@ ----@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). - -return { - cmd = { 'vue-language-server', '--stdio' }, - filetypes = { 'vue' }, - root_markers = { 'package.json' }, - on_init = function(client) - client.handlers['tsserver/request'] = function(_, result, context) - local clients = vim.lsp.get_clients({ bufnr = context.bufnr, name = 'vtsls' }) - if #clients == 0 then - vim.notify('Could not find `vtsls` lsp client, required by `vue_ls`.', vim.log.levels.ERROR) - return - end - local ts_client = clients[1] - - 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 - end, -} diff --git a/nvim/lsp/wasm_language_tools.lua b/nvim/lsp/wasm_language_tools.lua deleted file mode 100755 index 9b11896..0000000 --- a/nvim/lsp/wasm_language_tools.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@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. -return { - cmd = { 'wat_server' }, - filetypes = { 'wat' }, -} diff --git a/nvim/lsp/wgsl_analyzer.lua b/nvim/lsp/wgsl_analyzer.lua deleted file mode 100755 index 938471a..0000000 --- a/nvim/lsp/wgsl_analyzer.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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 ---- ``` -return { - cmd = { 'wgsl-analyzer' }, - filetypes = { 'wgsl' }, - root_markers = { '.git' }, - settings = {}, -} diff --git a/nvim/lsp/yamlls.lua b/nvim/lsp/yamlls.lua deleted file mode 100755 index 4d2ebca..0000000 --- a/nvim/lsp/yamlls.lua +++ /dev/null @@ -1,69 +0,0 @@ ----@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 ---- }, ---- }, ---- } ---- }) ---- ``` -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 } }, - }, -} diff --git a/nvim/lsp/yang_lsp.lua b/nvim/lsp/yang_lsp.lua deleted file mode 100755 index b34f7c4..0000000 --- a/nvim/lsp/yang_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://github.com/TypeFox/yang-lsp ---- ---- A Language Server for the YANG data modeling language. -return { - cmd = { 'yang-language-server' }, - filetypes = { 'yang' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/yls.lua b/nvim/lsp/yls.lua deleted file mode 100755 index 4722d56..0000000 --- a/nvim/lsp/yls.lua +++ /dev/null @@ -1,14 +0,0 @@ ----@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 -return { - cmd = { 'yls', '-vv' }, - filetypes = { 'yar', 'yara' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/ziggy.lua b/nvim/lsp/ziggy.lua deleted file mode 100755 index 40475b0..0000000 --- a/nvim/lsp/ziggy.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://ziggy-lang.io/documentation/ziggy-lsp/ ---- ---- Language server for the Ziggy data serialization format -return { - cmd = { 'ziggy', 'lsp' }, - filetypes = { 'ziggy' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/ziggy_schema.lua b/nvim/lsp/ziggy_schema.lua deleted file mode 100755 index c83fa3c..0000000 --- a/nvim/lsp/ziggy_schema.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ---- https://ziggy-lang.io/documentation/ziggy-lsp/ ---- ---- Language server for schema files of the Ziggy data serialization format -return { - cmd = { 'ziggy', 'lsp', '--schema' }, - filetypes = { 'ziggy_schema' }, - root_markers = { '.git' }, -} diff --git a/nvim/lsp/zk.lua b/nvim/lsp/zk.lua deleted file mode 100755 index e8a4e16..0000000 --- a/nvim/lsp/zk.lua +++ /dev/null @@ -1,68 +0,0 @@ ----@brief ---- ---- https://github.com/mickael-menu/zk ---- ---- A plain text note-taking assistant - -local function find_zk_root(startpath) - for dir in vim.fs.parents(startpath) do - if vim.fn.isdirectory(vim.fs.joinpath(dir, '.zk')) == 1 then - return dir - end - end -end - -return { - cmd = { 'zk', 'lsp' }, - filetypes = { 'markdown' }, - root_markers = { '.zk' }, - on_attach = function(client, bufnr) - vim.api.nvim_buf_create_user_command(bufnr, 'LspZkIndex', function() - vim.lsp.buf.execute_command { - command = 'zk.index', - arguments = { vim.api.nvim_buf_get_name(bufnr) }, - } - end, { - desc = 'ZkIndex', - }) - - vim.api.nvim_buf_create_user_command(bufnr, 'LspZkList', function() - local bufpath = vim.api.nvim_buf_get_name(bufnr) - local root = find_zk_root(bufpath) - - client:exec_cmd({ - command = 'zk.list', - arguments = { root, { select = { 'path' } } }, - }, { bufnr = bufnr }, function(_err, result) - if not result then - return - end - local paths = vim.tbl_map(function(item) - return item.path - end, result) - vim.ui.select(paths, {}, function(choice) - vim.cmd('edit ' .. choice) - end) - end) - end, { - desc = 'ZkList', - }) - - vim.api.nvim_buf_create_user_command(bufnr, 'LspZkNew', function(...) - client:exec_cmd({ - command = 'zk.new', - arguments = { - vim.api.nvim_buf_get_name(bufnr), - ..., - }, - }, { bufnr = bufnr }, function(_err, result) - if not (result and result.path) then - return - end - vim.cmd('edit ' .. result.path) - end) - end, { - desc = 'ZkNew', - }) - end, -} diff --git a/nvim/lsp/zls.lua b/nvim/lsp/zls.lua deleted file mode 100755 index a21ae19..0000000 --- a/nvim/lsp/zls.lua +++ /dev/null @@ -1,11 +0,0 @@ ----@brief ---- https://github.com/zigtools/zls ---- ---- Zig LSP implementation + Zig Language Server - -return { - cmd = { 'zls' }, - filetypes = { 'zig', 'zir' }, - root_markers = { 'zls.json', 'build.zig', '.git' }, - workspace_required = false, -} diff --git a/nvim/nvim-pack-lock.json b/nvim/nvim-pack-lock.json new file mode 100644 index 0000000..b1e66d4 --- /dev/null +++ b/nvim/nvim-pack-lock.json @@ -0,0 +1,100 @@ +{ + "plugins": { + "diaglist.nvim": { + "rev": "8aba9fcf62cc60e1d5ce941faedecc399d9a1e8b", + "src": "https://github.com/onsails/diaglist.nvim" + }, + "dressing.nvim": { + "rev": "2d7c2db2507fa3c4956142ee607431ddb2828639", + "src": "https://github.com/stevearc/dressing.nvim" + }, + "flutter-tools.nvim": { + "rev": "677cc07c16e8b89999108d2ebeefcfc5f539b73c", + "src": "https://github.com/nvim-flutter/flutter-tools.nvim" + }, + "follow-md-links.nvim": { + "rev": "99c4e7c78c0211e02c9ff282044b45f7b9dc2d0f", + "src": "https://github.com/jghauser/follow-md-links.nvim" + }, + "gitsigns.nvim": { + "rev": "e1fb5425c8812214209b3f24eaa582c6c552cf98", + "src": "https://github.com/lewis6991/gitsigns.nvim" + }, + "img-clip.nvim": { + "rev": "b6ddfb97b5600d99afe3452d707444afda658aca", + "src": "https://github.com/HakonHarnes/img-clip.nvim" + }, + "laravel.nvim": { + "rev": "623a22de1a54bd6e96839cef1845ffaaf3a1eed1", + "src": "https://github.com/adibhanna/laravel.nvim" + }, + "markview.nvim": { + "rev": "1861f959599ae03cfd59f56222a542035b0cd947", + "src": "https://github.com/OXY2DEV/markview.nvim" + }, + "mason.nvim": { + "rev": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65", + "src": "https://github.com/mason-org/mason.nvim" + }, + "mini.ai": { + "rev": "4b0a6207341d895b6cfe9bcb1e4d3e8607bfe4f4", + "src": "https://github.com/nvim-mini/mini.ai" + }, + "mini.completion": { + "rev": "4f94cafdeef02bf3ef9997cd6862658801caa22c", + "src": "https://github.com/nvim-mini/mini.completion" + }, + "mini.files": { + "rev": "b4796e09eb103f9f2d1e00aa2dab3753b879b17b", + "src": "https://github.com/nvim-mini/mini.files" + }, + "mini.icons": { + "rev": "5b9076dae1bfbe47ba4a14bc8b967cde0ab5d77e", + "src": "https://github.com/nvim-mini/mini.icons" + }, + "mini.move": { + "rev": "b8ba0b77e91b5f0fe8e014e03f7f59799dec1d96", + "src": "https://github.com/nvim-mini/mini.move" + }, + "mini.pick": { + "rev": "fe079c2bd894a5ee70b62f23d819620ef40c4949", + "src": "https://github.com/echasnovski/mini.pick" + }, + "mini.snippets": { + "rev": "c7a5fd5e767dcc732940f59f2a83c64ea7346a3e", + "src": "https://github.com/nvim-mini/mini.snippets" + }, + "mini.surround": { + "rev": "d205d1741d1fcc1f3117b4e839bf00f74ad72fa2", + "src": "https://github.com/nvim-mini/mini.surround" + }, + "nui.nvim": { + "rev": "de740991c12411b663994b2860f1a4fd0937c130", + "src": "https://github.com/MunifTanjim/nui.nvim" + }, + "nvim-lspconfig": { + "rev": "8e2084bf5e40c79c1f42210a6ef96a0a4793a763", + "src": "https://github.com/neovim/nvim-lspconfig" + }, + "nvim-treesitter": { + "rev": "539abf6da5ee8702e37b82cc953131dadd570da2", + "src": "https://github.com/nvim-treesitter/nvim-treesitter" + }, + "nvim-treesitter-context": { + "rev": "b0c45cefe2c8f7b55fc46f34e563bc428ef99636", + "src": "https://github.com/nvim-treesitter/nvim-treesitter-context" + }, + "plenary.nvim": { + "rev": "b9fd5226c2f76c951fc8ed5923d85e4de065e509", + "src": "https://github.com/nvim-lua/plenary.nvim" + }, + "tiny-inline-diagnostic.nvim": { + "rev": "ba133b3e932416e4b9507095731a6d7276878fe8", + "src": "https://github.com/rachartier/tiny-inline-diagnostic.nvim" + }, + "toggleterm.nvim": { + "rev": "9a88eae817ef395952e08650b3283726786fb5fb", + "src": "https://github.com/akinsho/toggleterm.nvim" + } + } +} |
