mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
treewide: Reformat with nixfmt
This commit is contained in:
parent
c6281260dc
commit
62f32bfc71
459 changed files with 28139 additions and 26377 deletions
|
@ -5,9 +5,11 @@
|
|||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
with lib;
|
||||
let
|
||||
cfg = config.plugins.dap.extensions.dap-virtual-text;
|
||||
in {
|
||||
in
|
||||
{
|
||||
options.plugins.dap.extensions.dap-virtual-text = {
|
||||
enable = mkEnableOption "dap-virtual-text";
|
||||
|
||||
|
@ -61,26 +63,27 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
config = let
|
||||
options = with cfg; {
|
||||
inherit commented;
|
||||
config =
|
||||
let
|
||||
options = with cfg; {
|
||||
inherit commented;
|
||||
|
||||
enabled_commands = enabledCommands;
|
||||
highlight_changed_variables = highlightChangedVariables;
|
||||
highlight_new_as_changed = highlightNewAsChanged;
|
||||
show_stop_reason = showStopReason;
|
||||
only_first_definition = onlyFirstDefinition;
|
||||
all_references = allReferences;
|
||||
clear_on_continue = clearOnContinue;
|
||||
display_callback = displayCallback;
|
||||
virt_text_pos = virtTextPos;
|
||||
all_frames = allFrames;
|
||||
virt_lines = virtLines;
|
||||
virt_text_win_col = virtTextWinCol;
|
||||
};
|
||||
in
|
||||
enabled_commands = enabledCommands;
|
||||
highlight_changed_variables = highlightChangedVariables;
|
||||
highlight_new_as_changed = highlightNewAsChanged;
|
||||
show_stop_reason = showStopReason;
|
||||
only_first_definition = onlyFirstDefinition;
|
||||
all_references = allReferences;
|
||||
clear_on_continue = clearOnContinue;
|
||||
display_callback = displayCallback;
|
||||
virt_text_pos = virtTextPos;
|
||||
all_frames = allFrames;
|
||||
virt_lines = virtLines;
|
||||
virt_text_win_col = virtTextWinCol;
|
||||
};
|
||||
in
|
||||
mkIf cfg.enable {
|
||||
extraPlugins = [cfg.package];
|
||||
extraPlugins = [ cfg.package ];
|
||||
|
||||
plugins.dap = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue