Browse Source

nixpkgs/neovim: ensure help files are detected

Thomas Dy 3 months ago
parent
commit
b40129f82c
1 changed files with 9 additions and 0 deletions
  1. 9 0
      .config/nixpkgs/neovim/neovim.nix

+ 9 - 0
.config/nixpkgs/neovim/neovim.nix

@@ -88,6 +88,15 @@ let
       set runtimepath=${placeholder "out"}/lib,$VIMRUNTIME
       set packpath=${placeholder "out"}/lib
 
+      lua <<EOF
+      -- make sure docs in our packpath are marked as help
+      vim.filetype.add({
+        pattern = {
+          [vim.o.packpath:gsub('[%.%-]', '%%%0') .. '/pack/.*/doc/.*%.txt'] = 'help'
+        }
+      })
+      EOF
+
       ${initText}
     '';