Vladimir Pouzanov
Vladimir Pouzanov
> I am curious about what you want to achieve here with this feature suggestion. As was correctly noted above, I want kanidm to deny login if the user failed...
I can reproduce it on traefik 3.0.2 in kubernetes. The actual error is from the [capture](https://sourcegraph.com/github.com/traefik/traefik@b1b4e6b/-/blob/pkg/middlewares/capture/capture.go?L56) middleware.
Another nix user here 😄 there are several issues I stumbled on while making orgmode usable. I patched the TS grammar in my flake: ```nix (nvim-treesitter.withPlugins (_: nvim-treesitter.allGrammars ++ [(pkgs.tree-sitter.buildGrammar...
Oddly enough, if I symlink the orgmode's `queries` into my neovim config folder, then it seems to work. 🤔
@kristijanhusak still doesn't work: > ...s/start/orgmode/lua/orgmode/utils/treesitter/install.lua:117: EACCES: permission denied: /nix/store/3297n9ymij2xh2123x3s269mr0433j28-vim-pack -dir/pack/myNeovimPackages/start/orgmode/.org-ts-lock.json It seems some codepath still tries to write a lockfile? And just for the record, that's with org grammar...
> Orgmode ~ > - ❌ ERROR Failed to run healthcheck for "orgmode" plugin. Exception: ...s/start/orgmode/lua/orgmode/utils/treesitter/install.lua:117: EACCES: permission denied: /nix/store/3297n9ymij2xh2123x3s269mr0433j28-vim-pack-dir/pack/myNeovimPackages/start/orgmode/.org-ts-lock.json
The problem here is because you expect the orgmode's plugin root directory is in user's $HOME somewhere, but in nix it's in the global and very read-only store.
It loads without issues now! But now we're back to this problem: https://github.com/nvim-orgmode/orgmode/issues/967#issuecomment-2860491966. There's no syntax highlighting whatsoever.
I do: ``` { "/nix/store/kjzz6565l7ij4zmj3ya3v0w1n3qmiqhk-vimplugin-treesitter-grammar-ALL-INCLUDED/queries/org/highlights.scm" } ``` Which seemingly comes from [nvim-orgmode/tree-sitter-org](https://github.com/nvim-orgmode/tree-sitter-org/blob/main/queries/highlights.scm).
That seems to do the trick, thanks! And thank you so much for all the debugging effort on this!