blob: 25bb746af97a73e50c2ca69055c10f098ad62d4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{sysLib}: let
snap-sync-forked = (import ./snap-sync-forked) {inherit sysLib;};
nvim_plugs = import ./plgs-pkgs;
update_vim_plugins = import ./update_vim_plugins;
yt = import ./yt;
comments = import ./comments;
yts-grammar = import ./tree-sitter-yts;
overlays =
snap-sync-forked
++ nvim_plugs
++ update_vim_plugins
++ yt
++ yts-grammar
++ comments;
in
overlays
|