Arvin Sevilla

Results 37 comments of Arvin Sevilla

The current implementation is still out of date, I think: ```js IO.prototype.join = () => this.unsafePerformIO(); ``` From: https://mostly-adequate.gitbook.io/mostly-adequate-guide/ch09 According to appendix_b (https://mostly-adequate.gitbook.io/mostly-adequate-guide/appendix_b), it should be: ```js IO.prototype.join = new...

I'm having a really hard time understanding traverse. I understand the type signature in that it's like map but it will wrap the values inside the functor instead of wrapping...

> I have had encountered the same problem on Archlinux with DWM. > > It was related to archlinux and the DBUS_SESSION_BUS_ADDRESS environment variable being setup incorrectly with something along...

Hello, can you elaborate on what needs to be changed? Based on the commit you linked, the previous line was: ```emacs-lisp (workspace (or (treemacs--select-workspace-by-name perspective-name) ``` Which was changed to:...

This worked for me in NixOS 23.05 using home-manager: ```nix home-manager.users.myuser = { pkgs, config, lib, ... }: { home.stateVersion = "23.11"; # etc... programs.firefox = { enable = true;...

Would love this feature right now.

Currently installing nix-darwin. I was confused by "Would you like to manage \ with nix-channel? [y/n]". The source code is pretty straight forward. It's basically asking to add nix-darwin as...

I see. So it's launching multiple `devenv shell`s huh. That is a bit tricky. - `.test.sh` depends on `devenv up` - `devenv up` depends on `enterShell` - `enterShell` executed by...

I should note that I am able to use it in another project successfully: cli error without permittedInsecurePackages ``` error: Package ‘nodejs-16.20.2’ in «github:NixOS/nixpkgs/f0451844bbdf545f696f029d1448de4906c7f753»/pkgs/development/web/nodejs/v16.nix:16 is marked as insecure, refusing to...

For copy paste: execute in shell: ```shell git clone --depth 1 "https://github.com/lifepillar/vim-gruvbox8.git" .vim/pack/default/start/gruvbox8 ``` copy to **.vimrc** file: ```vimrc autocmd vimenter * ++nested colorscheme gruvbox8 ```