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