tangled
alpha
login
or
join now
da157.id
/
nixvim-cfg
0
fork
atom
0xda157's nixvim config
0
fork
atom
overview
issues
pulls
pipelines
nix: only use flake formatter
awwpotato
11 months ago
b6a43362
d2db5745
+3
-3
2 changed files
expand all
collapse all
unified
split
modules
plugins
conform
default.nix
lsp
default.nix
+2
-2
modules/plugins/conform/default.nix
···
79
79
python = [ "black" ];
80
80
lua = [ "stylua" ];
81
81
nix = {
82
82
-
stop_after_first = true;
83
82
__unkeyed-1 = "nix fmt";
84
84
-
__unkeyed-2 = "nixfmt";
83
83
+
# __unkeyed-2 = "nixfmt";
84
84
+
# stop_after_first = true;
85
85
};
86
86
rust = [ "rustfmt" ];
87
87
bash = [ "shfmt" ];
+1
-1
modules/plugins/lsp/default.nix
···
63
63
jsonls.enable = true;
64
64
nixd = {
65
65
enable = true;
66
66
-
settings.formatting.command = [ "nixfmt" ];
66
66
+
settings.formatting.command = [ "nix fmt" ];
67
67
};
68
68
ansiblels.enable = true;
69
69
dockerls.enable = true;