We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14422c commit 779413cCopy full SHA for 779413c
home/nvim/default.nix
@@ -2,6 +2,7 @@
2
pkgs,
3
lib,
4
inputs,
5
+ config,
6
...
7
}: {
8
programs.neovim = {
@@ -21,7 +22,8 @@
21
22
};
23
in {
24
"nvim/init.lua".source = ./init.lua;
- "nvim/lua".source = ./lua;
25
+ # "nvim/lua".source = ./lua;
26
+ "nvim/lua".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/home/nvim/lua";
27
"nvim/ftplugin".source = ./ftplugin;
28
"nvim/parser".source = "${treesitterParsers}/parser";
29
"nvim/after/queries/go/textobjects.scm".source = ./go-textobjects.scm;
@@ -49,7 +51,7 @@
49
51
"nvim-treesitter-textobjects"
50
52
"quicker-nvim"
53
"render-markdown-nvim"
- "snacks-nvim"
54
+ # "snacks-nvim"
55
]
56
(
57
name: {
0 commit comments