nixos-config/config/programs/vim/modules/lsp/neoformat.nix

26 lines
332 B
Nix
Raw Normal View History

2023-04-15 07:48:24 +00:00
{
pkgs,
config,
...
}: {
output.plugins =
if config.isDesktop
then with pkgs.vimPlugins; [neoformat]
else [];
lspconfigPath = with pkgs; [
clang-tools
cmake-format
nodePackages.prettier
dhall
elixir
go
ormolu
taplo
stylua
alejandra
yapf
rustfmt
shfmt
];
}