add arrow plugin
This commit is contained in:
parent
8a72107a1d
commit
e4255f0817
1 changed files with 16 additions and 0 deletions
16
plugins/arrow.nix
Normal file
16
plugins/arrow.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{ icons, pkgs, ... }:
|
||||||
|
{
|
||||||
|
opts.enable = true;
|
||||||
|
|
||||||
|
extra = {
|
||||||
|
packages = [ pkgs.vimPlugins.arrow-nvim ];
|
||||||
|
|
||||||
|
config = ''
|
||||||
|
require('arrow').setup({
|
||||||
|
show_icons = true,
|
||||||
|
leader_key = ';', -- Recommended to be a single key
|
||||||
|
buffer_leader_key = 'm', -- Per Buffer Mappings
|
||||||
|
})
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue