about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim/plgs/femaco/default.nix
blob: 570ff297368ab5021d689941661e7e83798620e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  pkgs,
  lib,
  ...
}: {
  programs.nixvim = {
    # TODO: package femaco through a module
    extraConfigLuaPost = ''
      ${lib.strings.fileContents ./lua/femaco.lua}
    '';
    extraPlugins = [
      pkgs.vimExtraPlugins.nvim-FeMaco-lua
    ];
    maps = {
      normal = {
        "<leader>cc" = {
          action = "require('femaco.edit').edit_code_block";
          lua = true;
          desc = "edit a [c]ode blo[c]k with femaco";
        };
      };
    };
  };
}