mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 18:24:35 +02:00
treewide: Reformat with nixfmt
This commit is contained in:
parent
c6281260dc
commit
62f32bfc71
459 changed files with 28139 additions and 26377 deletions
|
@ -11,7 +11,7 @@
|
|||
settings = {
|
||||
command = "flutter";
|
||||
use_lsp = true;
|
||||
custom_test_method_names = [];
|
||||
custom_test_method_names = [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
plugins.neotest = {
|
||||
enable = true;
|
||||
|
||||
adapters = {};
|
||||
adapters = { };
|
||||
settings = {
|
||||
discovery = {
|
||||
enabled = true;
|
||||
|
@ -58,7 +58,7 @@
|
|||
};
|
||||
default_strategy = "integrated";
|
||||
log_level = "warn";
|
||||
consumers = {};
|
||||
consumers = { };
|
||||
icons = {
|
||||
child_indent = "│";
|
||||
child_prefix = "├";
|
||||
|
@ -70,7 +70,16 @@
|
|||
non_collapsible = "─";
|
||||
passed = "";
|
||||
running = "";
|
||||
running_animated = ["/" "|" "\\" "-" "/" "|" "\\" "-"];
|
||||
running_animated = [
|
||||
"/"
|
||||
"|"
|
||||
"\\"
|
||||
"-"
|
||||
"/"
|
||||
"|"
|
||||
"\\"
|
||||
"-"
|
||||
];
|
||||
skipped = "";
|
||||
unknown = "";
|
||||
watching = "";
|
||||
|
@ -99,7 +108,7 @@
|
|||
border = "rounded";
|
||||
max_height = 0.6;
|
||||
max_width = 0.6;
|
||||
options = {};
|
||||
options = { };
|
||||
};
|
||||
strategies = {
|
||||
integrated = {
|
||||
|
@ -118,7 +127,10 @@
|
|||
clear_target = "T";
|
||||
debug = "d";
|
||||
debug_marked = "D";
|
||||
expand = ["<CR>" "<2-LeftMouse>"];
|
||||
expand = [
|
||||
"<CR>"
|
||||
"<2-LeftMouse>"
|
||||
];
|
||||
expand_all = "e";
|
||||
jumpto = "i";
|
||||
mark = "m";
|
||||
|
|
|
@ -10,17 +10,17 @@
|
|||
|
||||
settings = {
|
||||
dap = {
|
||||
args = {justMyCode = false;};
|
||||
args = {
|
||||
justMyCode = false;
|
||||
};
|
||||
adapter_name = "netcoredbg";
|
||||
};
|
||||
custom_attributes = {
|
||||
xunit = ["MyCustomFactAttribute"];
|
||||
nunit = ["MyCustomTestAttribute"];
|
||||
mstest = ["MyCustomTestMethodAttribute"];
|
||||
xunit = [ "MyCustomFactAttribute" ];
|
||||
nunit = [ "MyCustomTestAttribute" ];
|
||||
mstest = [ "MyCustomTestMethodAttribute" ];
|
||||
};
|
||||
dotnet_additional_args = [
|
||||
"--verbosity detailed"
|
||||
];
|
||||
dotnet_additional_args = [ "--verbosity detailed" ];
|
||||
discovery_root = "project";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -9,10 +9,13 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
mix_task = ["my_custom_task"];
|
||||
extra_formatters = ["ExUnit.CLIFormatter" "ExUnitNotifier"];
|
||||
extra_block_identifiers = ["test_with_mock"];
|
||||
args = ["--trace"];
|
||||
mix_task = [ "my_custom_task" ];
|
||||
extra_formatters = [
|
||||
"ExUnit.CLIFormatter"
|
||||
"ExUnitNotifier"
|
||||
];
|
||||
extra_block_identifiers = [ "test_with_mock" ];
|
||||
args = [ "--trace" ];
|
||||
post_process_command.__raw = ''
|
||||
function(cmd)
|
||||
return vim.tbl_flatten({{"env", "FOO=bar"}, cmd})
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
settings = {
|
||||
foundryCommand = "forge test";
|
||||
foundryConfig = null;
|
||||
env = {};
|
||||
env = { };
|
||||
cwd.__raw = ''
|
||||
function ()
|
||||
return lib.files.match_root_pattern("foundry.toml")
|
||||
|
|
|
@ -12,7 +12,10 @@
|
|||
experimental = {
|
||||
test_table = true;
|
||||
};
|
||||
args = ["-count=1" "-timeout=60s"];
|
||||
args = [
|
||||
"-count=1"
|
||||
"-timeout=60s"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -32,7 +32,9 @@
|
|||
'';
|
||||
history_size = 3;
|
||||
parsing_throttle_ms = 10;
|
||||
mappings = {configure = null;};
|
||||
mappings = {
|
||||
configure = null;
|
||||
};
|
||||
summary_view = {
|
||||
header_length = 80;
|
||||
shell_palette = {
|
||||
|
@ -43,7 +45,7 @@
|
|||
bold = "\27[1m";
|
||||
};
|
||||
};
|
||||
extra_args = [];
|
||||
extra_args = [ ];
|
||||
filter_dir.__raw = ''
|
||||
function(name, rel_path, root)
|
||||
end
|
||||
|
|
|
@ -11,7 +11,9 @@
|
|||
settings = {
|
||||
jestCommand = "npm test --";
|
||||
jestConfigFile = "custom.jest.config.ts";
|
||||
env = {CI = true;};
|
||||
env = {
|
||||
CI = true;
|
||||
};
|
||||
cwd.__raw = ''
|
||||
function(path)
|
||||
return vim.fn.getcwd()
|
||||
|
|
|
@ -9,9 +9,16 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
ignore_dirs = ["vendor" "node_modules"];
|
||||
root_ignore_files = ["phpunit-only.tests"];
|
||||
test_file_suffixes = ["Test.php" "_test.php" "PestTest.php"];
|
||||
ignore_dirs = [
|
||||
"vendor"
|
||||
"node_modules"
|
||||
];
|
||||
root_ignore_files = [ "phpunit-only.tests" ];
|
||||
test_file_suffixes = [
|
||||
"Test.php"
|
||||
"_test.php"
|
||||
"PestTest.php"
|
||||
];
|
||||
sail_enabled.__raw = "function() return false end";
|
||||
sail_executable = "vendor/bin/sail";
|
||||
pest_cmd = "vendor/bin/pest";
|
||||
|
|
|
@ -14,9 +14,18 @@
|
|||
return "vendor/bin/phpunit"
|
||||
end
|
||||
'';
|
||||
root_files = ["composer.json" "phpunit.xml" ".gitignore"];
|
||||
filter_dirs = [".git" "node_modules"];
|
||||
env = {XDEBUG_CONFIG = "idekey=neotest";};
|
||||
root_files = [
|
||||
"composer.json"
|
||||
"phpunit.xml"
|
||||
".gitignore"
|
||||
];
|
||||
filter_dirs = [
|
||||
".git"
|
||||
"node_modules"
|
||||
];
|
||||
env = {
|
||||
XDEBUG_CONFIG = "idekey=neotest";
|
||||
};
|
||||
dap = null;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
return vim.loop.cwd()
|
||||
end
|
||||
'';
|
||||
env = {};
|
||||
extra_args = [];
|
||||
env = { };
|
||||
extra_args = [ ];
|
||||
filter_dir.__raw = ''
|
||||
function(name, rel_path, root)
|
||||
return name ~= "node_modules"
|
||||
|
|
|
@ -10,7 +10,10 @@
|
|||
|
||||
settings = {
|
||||
dap.justMyCode = false;
|
||||
args = ["--log-level" "DEBUG"];
|
||||
args = [
|
||||
"--log-level"
|
||||
"DEBUG"
|
||||
];
|
||||
runner = "pytest";
|
||||
python = ".venv/bin/python";
|
||||
is_test_file.__raw = ''
|
||||
|
|
|
@ -18,8 +18,15 @@
|
|||
})
|
||||
end
|
||||
'';
|
||||
root_files = ["Gemfile" ".rspec" ".gitignore"];
|
||||
filter_dirs = [".git" "node_modules"];
|
||||
root_files = [
|
||||
"Gemfile"
|
||||
".rspec"
|
||||
".gitignore"
|
||||
];
|
||||
filter_dirs = [
|
||||
".git"
|
||||
"node_modules"
|
||||
];
|
||||
transform_spec_path.__raw = ''
|
||||
function(path)
|
||||
return path
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
args = ["--no-capture"];
|
||||
args = [ "--no-capture" ];
|
||||
dap_adapter = "lldb";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
args = ["--no-color"];
|
||||
args = [ "--no-color" ];
|
||||
runner = "bloop";
|
||||
framework = "utest";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue