15 lines
232 B
Nix
15 lines
232 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.neovim.plugins = with pkgs.vimPlugins; [
|
|
{
|
|
plugin = which-key-nvim;
|
|
type = "lua";
|
|
config =
|
|
# lua
|
|
''
|
|
require("which-key").setup({})
|
|
'';
|
|
}
|
|
];
|
|
}
|