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
Raw Normal View History

2022-09-16 23:42:53 +03:00
{ neoformat, ... }:
2022-09-16 10:18:16 +03:00
2022-10-22 23:35:27 +03:00
let
inherit (builtins) readFile;
in
2022-09-16 10:18:16 +03:00
{
2022-10-22 23:35:27 +03:00
luaConfig = readFile ./neoformat.lua;
2022-09-16 10:18:16 +03:00
2022-09-16 23:42:53 +03:00
plugins = [ neoformat ];
2022-09-16 10:18:16 +03:00
}