This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/plugins/formatter/default.nix

11 lines
131 B
Nix

{ neoformat, ... }:
let
inherit (builtins) readFile;
in
{
luaConfig = readFile ./neoformat.lua;
plugins = [ neoformat ];
}