summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/default.nix b/config/default.nix
new file mode 100644
index 0000000..ece45ef
--- /dev/null
+++ b/config/default.nix
@@ -0,0 +1,19 @@
+{
+ lib,
+ vimUtils,
+ version,
+}:
+vimUtils.buildVimPlugin {
+ pname = "neovim-config";
+ inherit version;
+
+ src = lib.fileset.toSource {
+ root = ./.;
+ fileset = lib.fileset.unions [
+ ./after
+ ./ftdetect
+ ./lua
+ ./plugin
+ ];
+ };
+}