miljau

Results 7 comments of miljau

@bstrie's workaround is pretty good. For custom structs, you can do make a shadow type, implement deserialize on it, and do validations within the TryFrom implementation. ```rust use serde::Deserialize; use...

You know . . . you could just do a pull request and I'll accept it. Or if you're up to it, I can always transfer the ownership of this...

For a temporary solution on 24.05 you can just add the dependencies as extraPlugins to nixvim. ```nix programs.nixvim.extraPlugins = [ (pkgs.vimUtils.buildVimPlugin { inherit (pkgs.luaPackages.lua-utils-nvim) pname version src; }) (pkgs.vimUtils.buildVimPlugin {...

I've seen similar behaviour with large strings while diffing nix files too. Nix files has a similar construct to heredoc that people use to embed large chunks of text within...

Defining a profilePath like so seems to have resolved this issue: ``` profilePath = "${self.homeConfigurations."user@host"}/nix/profiles/deployable-home"; ``` by default the profile name ended up being "home-manager" and this ended up squeezing...

[blink-compat](https://github.com/Saghen/blink.compat) + neorg's nvim cmp source should also work.