mirror of
https://github.com/fred-drake/neovim.git
synced 2026-06-05 14:59:28 -05:00
29 lines
604 B
Nix
29 lines
604 B
Nix
{pkgs, ...}: {
|
|
# plugins = {
|
|
# dap = {
|
|
# enable = true;
|
|
# adapters.servers = {
|
|
# "pwa-node" = {
|
|
# host = "localhost";
|
|
# port = 8123;
|
|
# executable = {
|
|
# command = "${pkgs.vscode-js-debug}/bin/js-debug";
|
|
# };
|
|
# };
|
|
# };
|
|
# };
|
|
# };
|
|
|
|
# extraConfigLua = ''
|
|
# require("dap").configurations.javascript = {
|
|
# {
|
|
# type = "pwa-node",
|
|
# request = "launch",
|
|
# name = "Launch file",
|
|
# program = "''${file}",
|
|
# cwd = "''${workspaceFolder}",
|
|
# },
|
|
# }
|
|
# '';
|
|
}
|