about summary refs log blame commit diff stats
path: root/modules/home/conf/nvim/plgs/femaco/default.nix
blob: 6c4a7d892879f06d4a929d9989f5bede8f87bc87 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                     
                                           


                                                  
                                     
      


                           
                                                                

                                                           
    
{
  pkgs,
  lib,
  ...
}: {
  programs.nixvim = {
    # TODO: package femaco through a module
    extraConfigLuaPost = ''
      ${lib.strings.fileContents ./lua/femaco.lua}
    '';
    extraPlugins = [
      pkgs.vimPlugins.nvim-FeMaco-lua
    ];
    keymaps = [
      {
        key = "<leader>cc";
        mode = "n";
        action.__raw = "require('femaco.edit').edit_code_block";
        options.desc = "edit a [c]ode blo[c]k with femaco";
      }
    ];
  };
}