• 6 Posts
  • 181 Comments
Joined 2 years ago
cake
Cake day: July 11th, 2024

help-circle






  • That’s interesting I hadn’t thought about the JSON angle! Do you mean that you can actually use jq on regular command outputs like ls -l?

    Oil is an interesting project and the backward compatibility with bash is very neat! I don’t see myself using it though, since it’s syntax is very close to bash on purpose I’d probably get oil syntax and bash syntax all mixed up in my head and forget which is which… So I went with nushell because it doesn’t look anything like bash. If you know python what do you think about xonsh? I


  • I’ve also been using zsh until now, it’s clear it’s a massive improvement over bash. No more accidentally pasting code into the terminal!

    I wasn’t even looking for a new interactive shell, zsh is fine, I was looking for a new language for shell scripts because I’m tired of bash’s legacy quirks… but the interactive nushell was too cool to resist!







  • Finally managed to enable VSCode extensions without doing it imperatively or using home manager I’m so happy I could cry 😭 😭 😭

    It actually wasn’t even that bad, I’m just terrible at understanding documentation I guess

    	(vscode-with-extensions.override {
    		vscodeExtensions = with vscode-extensions; [
    			bodil.blueprint-gtk          # Gtk Bluprint language support
    			ms-vscode.makefile-tools     # Makefile language support
    			bbenoist.nix                 # Nix language support
    			ms-python.python             # Python language support
    			naumovs.color-highlight      # Color Highlight
    			ms-azuretools.vscode-docker  # Docker
    			donjayamanne.githistory      # Git History
    			seatonjiang.gitmoji-vscode   # Gitmoji
    		];
    	})