forked from emily/nixfiles
fixed nixvim
This commit is contained in:
parent
878c3e0b8f
commit
ca8cbecec6
2 changed files with 7 additions and 2 deletions
|
@ -36,6 +36,7 @@
|
|||
signal-desktop
|
||||
element-desktop
|
||||
|
||||
nixfmt-classic
|
||||
wl-clipboard
|
||||
libnotify
|
||||
slurp
|
||||
|
|
|
@ -162,12 +162,16 @@
|
|||
servers = {
|
||||
bashls.enable = true;
|
||||
lua-ls.enable = true;
|
||||
nixd = {
|
||||
nil_ls = {
|
||||
enable = true;
|
||||
settings.formatting.command = [ "nixfmt" "-w" "140" ];
|
||||
};
|
||||
nixd = {
|
||||
enable = false;
|
||||
settings = {
|
||||
eval.depth = 5;
|
||||
eval.workers = 6;
|
||||
formatting.command = "nixpkgs-fmt";
|
||||
formatting.command = [ "nixfmt" "-w" "140" ];
|
||||
options.enable = true;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue