소스 검색

nixpkgs/neovim: ensure help files are detected

Thomas Dy 3 달 전
부모
커밋
b40129f82c
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  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}
     '';