Move neovim/nixvim configuration
This commit is contained in:
parent
32e28379e2
commit
6c1b494e82
56 changed files with 438 additions and 404 deletions
19
modules2/nixvim/plugins/phpactor.nix
Normal file
19
modules2/nixvim/plugins/phpactor.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
flake.modules.nixvim.custom =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
extraPlugins = with pkgs.vimPlugins; [ phpactor ];
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
key = "<leader>pm";
|
||||
action = "<cmd>PhpactorContextMenu<CR>";
|
||||
}
|
||||
|
||||
{
|
||||
key = "<leader>pn";
|
||||
action = "<cmd>PhpactorClassNew<CR>";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue