Michael Hoang

Results 91 comments of Michael Hoang

@belak @indrajitr any thoughts on this PR?

~~This looks cool, but I don't think it's necessary, as `osConfig` is accessible from `home-manager`~~ `home.nix`: ``` { osConfig, ... }: { osConfig.age.secrets.githubToken.file = ./secrets/jdoe/githubToken.age; } ``` EDIT: I was...

Another hint mode that might be useful is copying actual image objects to clipboard. Many HTML5 websites support pasting images now, so this would be a useful feature.

I believe this is a result of bracketed paste mode: https://en.wikipedia.org/wiki/ANSI_escape_code#cite_ref-26 Some resources I found: - https://cirw.in/blog/bracketed-paste - https://p.janouch.name/article-tui.html#Clipboard (this article talks more specifically about `ncurses`) The simplest way is...

I've been encountering this same bug under `zsh` for a long time too and based on the text here: https://github.com/zsh-users/zsh/blob/68405f31a043bdd5bf338eb06688ed3e1f740937/README#L38-L45 I'm guessing that this is implemented specifically for `zle` (the...

You can enable `colorize` for all files with: ```json "colorize.include": [ "*" ] ```

To run rootless Podman with Arion, I ended up having to alias `podman-compose` to `docker-compose` https://github.com/Enzime/dotfiles-nix/blob/%F0%9F%94%A5/overlays/docker-compose.nix Combined with `virtualisation.podman.dockerCompat = true;` Would love to see some simple way to call...

I think we should add tab completions for `:tab-*` commands so that you could use it like `:tab-delete github`

If it matches more than one tab, it could either error out (unless a flag to delete multiple is given), alternatively we could make it prompt for which tab to...

@berbiche I had a look through the references to `NIX_PATH` in the `home-manager` repo and it seems like it should be fine. This PR is basically just a way to...