mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 19:40:06 +02:00
plugins/lzn-auto-require: init
This commit is contained in:
parent
e7e6cfd32b
commit
175b7a47de
2 changed files with 44 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
e2e =
|
||||
{ lib, ... }:
|
||||
{
|
||||
plugins.lz-n.enable = true;
|
||||
plugins.lzn-auto-require.enable = true;
|
||||
|
||||
plugins.smart-splits = {
|
||||
enable = true;
|
||||
lazyLoad.settings.lazy = true; # manual lazy-loading
|
||||
};
|
||||
|
||||
extraConfigLuaPost = lib.mkMerge [
|
||||
(lib.mkOrder 4999 ''
|
||||
local success, _ = pcall(require, 'smart-splits')
|
||||
if success then
|
||||
print("require should not succeed")
|
||||
end
|
||||
'')
|
||||
(lib.mkOrder 5001 ''
|
||||
local success, _ = pcall(require, 'smart-splits')
|
||||
if not success then
|
||||
print("require should succeed")
|
||||
end
|
||||
'')
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue