Run nixfmt

This commit is contained in:
Donovan Glover 2023-05-11 19:07:04 -04:00
parent 6794f7be19
commit 95ccadd612
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -66,7 +66,8 @@
EDITOR = "nvim";
VISUAL = "nvim";
GIT_DISCOVERY_ACROSS_FILESYSTEM = "1";
FZF_DEFAULT_COMMAND = "rg --files --no-ignore --hidden --follow --glob \"!.git/*\"";
FZF_DEFAULT_COMMAND =
''rg --files --no-ignore --hidden --follow --glob "!.git/*"'';
FZF_DEFAULT_OPTS = "--height 40% --reverse --border --color=16";
NODE_OPTIONS = "--max_old_space_size=16384";
};
@ -87,7 +88,8 @@
environment.shells = with pkgs; [ fish ];
programs.fish.shellAliases = {
ls = "exa --group-directories-first -I 'lost+found'";
tree = "exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found'";
tree =
"exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found'";
mv = "mv -i";
rg = "rg --max-columns=2000";
};