Ahmadullah Mirzablog.ahmadullah.in·Jan 5, 2025Troubleshooting [zsh: Corrupt History File]: A Simple Guide for Windows, Linux, macOSIf you often use the Zsh shell, at some point, you've probably encountered the frustrating issue of a corrupt history file. This problem can happen suddenly and disrupt your workflow by causing errors when you try to view or search your command histo...zsh
Laxman Patelgorgeousgawin.hashnode.dev·Dec 30, 2024The Power of Two: How Zsh and Tilix Revolutionize the Terminal ExperienceIn the realm of software development, the tools we choose can significantly impact our productivity and overall experience. Among the myriad of options available, the combination of Zsh and Tilix stands out as a powerful duo for developers. This blog...zsh
Fuad Olatunjiblog.fuadolatunji.me·Dec 13, 2024How to clear TMUX scrollback buffer with zsh keybindingstmux -V &> /dev/null if [[ $? -eq 0 ]]; then function clear_tmux_scrollback_buffer() { tmux clear-history } zle -N clear_tmux_scrollback_buffer bindkey "^[^L" clear_tmux_scrollback_buffer fi https://github.com/fuadop/zsh-conf...zsh
Imran Shaikhdevimran.hashnode.dev·Oct 29, 2024How to setup ohmyzsh with autocomplete and autosuggestion.Hey there! 👋 I’m Imran Shaikh, a Full Stack Developer at Automatio.ai. Today, I’ll show you how to set up Oh My Zsh with autocomplete and autosuggestion to supercharge your terminal ⚡️. What is zsh and ohmyzsh ? Zsh is a powerful, customizable Unix ...58 readsLinux
Abhishek kushwahaforKeploy Community Blogkeploy.hashnode.dev·Oct 28, 2024Top Alternatives to the Zsh ls CommandThe Zsh shell is a powerful and versatile command-line interface that enhances user productivity with its advanced features and customization options. Among the essential commands in any shell environment is the 'ls' command, which lists directory co...zsh
Febin Joyartofcoding.dev·Oct 27, 2024Setting up a Linux terminal for productivityIntroduction Recently, I have installed my computer with Arch Linux. The decision to move to vanilla Arch from EndeavourOS (another Arch-based distro) was quite an organic one. I just thought of starting with a clean slate without any preinstalled ap...109 reads#LinuxTerminal
Ankur Saxenaankur-blogs.hashnode.dev·Oct 5, 2024How to Install ZSH and Oh-My-Zsh in Linux UbuntuWhat is Zsh Shell Zsh (short for "Z Shell") is a Unix shell or command-line interpreter that is an alternative to the traditional Bourne shell (sh) and the more common Bash shell. It was developed as an extended version of the Bourne shell with addit...z-shell
Nik Hamidihamididev.hashnode.dev·Sep 23, 2024WSL Setup ( Ubuntu + ZSH + Pyenv)Introduction In this article, we’ll walk you through setting up WSL (Windows Subsystem for Linux) with Ubuntu, ZSH, and Pyenv. Whether you’re a software developer, data scientist, or just someone who prefers working in a Linux environment but needs t...51 readsWSL
Brandon C Robertsbrandoncroberts.hashnode.dev·Sep 19, 2024Using `.zshrc` file and Homebrew as a Node.js Version Manager and alternative to nvmOverview Instead of using nvm (Node Version Manager), you can manage multiple Node.js versions using Homebrew and your .zshrc file. This approach involves installing different Node.js versions via Homebrew and updating your PATH environment variable ...Node.js
Kevin Gathukukevgathuku.dev·Sep 17, 2024Building our own zsh_stats command line appIn the previous post we saw how zsh has a nice inbuilt function zsh_stats to get a summarized list of the most commonly used terminal commands. This got me wondering, can we replicate this result ourselves? 🤔 Let’s find out. Language of Choice We wi...52 readszsh