Adam Karim
Adam Karim
I find this a good bit easier: ```lua local file_browser = require('telescope').load_extension('file_browser') require('telescope.builtin').file_browser = file_browser.file_browser ``` The extra benefit is that it works for other plugins which expect the deprecated...
This worked for me: ``` In [1]: from orator import DatabaseManager, Model In [2]: import yaml In [3]: config = yaml.safe_load(open('orator.yml')) In [4]: db = DatabaseManager(config['databases']) In [5]: Model.set_connection_resolver(db) ```
Thanks @adrian-gierakowski, I ended up with the following config entry and all works well: ``` [diff "sopsdiffer"] textconv = "sops --config /dev/null -d" ```
@klautcomputing It is because the [dynamic loader](https://nixos.wiki/wiki/Packaging/Binaries#The_Dynamic_Loader) of the binary is pointing to a path that does not exist on NixOS. You can run something like this to fix it:...
@klautcomputing I was curious if I could make a more automated solution for fun. I highly don't suggest this but one could add something ing like this to `configuration.nix`: ```nix...
@budimanjojo it's because the binary needs to be patched for the changed ld location. I do this on my arm system because I'm too lazy to patch every binary each...
@budimanjojo on x86_64 it is `ld-linux-x86-64.so.2`. Many LSP servers are written in Node but a good number are not such as clangd, rnix, and many more. The problem I run...
@budimanjojo yeah, that was nixos specific. Sorry. If I get time I'll try and reproduce for you.
Thanks, @mtoohey31. I was trying to get something working for `age` and your script was the answer. I did away with creating file descriptors base populating a variable with `stdin`....
@prskr looks interesting. I'll checkout when I have some free cycles!