summaryrefslogtreecommitdiff
path: root/nixvim/plugins/lsp-format.nix
blob: ac6446316ac6372e2efbe79528f77ed383e32c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  keymaps = [
    {
      action = "FormatToggle";
      key = "<leader>z";
      mode = "n";
      options = {
        noremap = true;
        silent = true;
      };
    }
  ];

  plugins.lsp-format = {
    enable = true;
  };
}