Cygwin Windows Is Searching For Mintty Missing

  1. Cygwin Searching For Mintty
  2. Mintty Download Windows 10
  3. Cygwin Mintty Config
  4. Mintty For Windows 10
  5. Cygwin Windows Is Searching For Mintty Missing Fishermen
  • Installing and Updating Cygwin Packages Installing and Updating Cygwin for 64-bit versions of Windows. Run setup-x8664.exe any time you want to update or install a Cygwin package for 64-bit windows. The signature for setup-x8664.exe can be used to verify the validity of this binary. Installing and Updating Cygwin for 32-bit versions of Windows.
  • Google; About Google; Privacy; Terms.
  • Sep 10, 2013 - Re: Windows is searching for Mintty. Packages installation worked fine but it seems Mintty is missing. I reinstalled. MinTTY is a Windows-specific terminal emulator for the widely used Cygwin and MSYS projects, which provide Unix-like environments for Windows.

Instructions to obtain ZSH on a windows environment, without the input funny business presented by some other attempted solutions.

The final result is ZSH running on a mintty terminal, emulated by cygwin, and being handled by the popular cmder.

Why is this here?

For the benefit of myself and others. I've already followed these instructions twice. It took me hours to figure all this out, maybe someone else can save a few.

What exactly is covered?

Cygwin Windows Is Searching For Mintty Alternatively, you can enable the Ctrl + Shift + H shortcut by going into the options pane of mintty and enabling Ctrl + Shift + letters shortcuts in the Key section of the options. You access the options pane by right-clicking the mintty icon of the mintty window. Linux is great for programming compared to Windows. If you miss the experience you get on Linux, maybe you should try Cygwin, which set up a Linux-like environment on Windows platform. In this post, I want to talk about how to configure Cygwin and how to use mintty terminal on Windows 10 to get excellent programming experience.

  • Installing and setting up cmder
  • Installing and setting up cygwin with a package manager
  • Configuring Mintty colors, fonts, and a few other settings
  • Installing zsh, oh-my-zsh, a nifty plugin, and adding a color theme.
  • Configuring the usage of Dir_colors (albeit not in detail), as well as powerline fonts for fancy symbols
  • [optional] Generating a fancy promptline using a vim plugin (since I use vim)
  • Correcting input issues popular python, nodejs, and other language libraries may face... in a very simple way.

Cygwin Searching For Mintty

While there is a lot of detail here, the ETA to follow these instructions with reasonable pace is ~1hr, especially if you skip a lot of the vim / dir_colors / extra plugin stuff (or save it for another time). I tried to present this in a way that covers the essentials first and cosmetics later.

1. Cygwin setup:

  1. This is straight forward and simple. Download Cygwin.
  2. Run the installer. When it asks for packages, search for 'wget' and make sure that it is selected for install (it will have a version number displayed when set to). Only download the bin, no need for src.
  3. Finish installing. Launch the cygwin terminal from the start menu or the batch file from C:cygwin64

We're going to setup a package manager for cygwin now. Normally if you wanted more packages you'd have to re-run the installer - which means you have to keep it around for later. I don't like that option, so I found apt-cyg. Works like it sounds: apt-get for cygwin!

  1. Run the following to download apt-cyg with wget, install it into the bin of cygwin, and then install a few important commands. Note, you don't need gdb, vim, or dos2unix. I personally use all 3 and will be setting up vim, so I'm grabbing them now. Explore the cygwin packages and grab what you want!NOTE if you run into any line ending issues from here out, scroll down to 'I can't run upgrade oh my zsh' and read
  1. If you want your home folder to be your user's folder, you need to edit /etc/nsswitch.conf. You can do this in the text editor you just downloaded, or type explorer /etc to open the root directory to edit the file in wordpad.
  2. Add this line to the bottom: db_home: windows

That's it for cygwin, you can close the terminal. Unless you are adding more packages with apt-cyg, you'll probably not be touching cygwin much more. It's mostly the backbone of this little operation. Now onto cmder, which is the terminal emulator of choice for this guide.

2. CMDER Setup:

DownloadSearching
  1. Download and install some or all of the powerline fonts. I only use Hack in this guide, so feel free to stick to this. Powerline fonts, for the uneducated, are patched fonts that include some fancy symbols related to git and such. You don't need this, but it's a plus!
  • 'There's a install.ps1 in the folder. Set execution policy and run it.' (Thanks @yiufung)
  1. Download cmder to get started (the full version!). This is a conemu derivative to run shells inside of. It's flexible and highly customizable, which tends to make it desireable. Features a quake-style drop down shell if you're that kind of person, but more importantly plays really nice with keyboard interactions.
  2. Unpack cmder to a desired location, this is where you'll be keeping cmder permenantly, so pick a cozy spot. Run cmder.exe.
  3. Right click the tab bar of cmder to open the settings. We're going to tweak a few things. Tweak as you like of course.
    1. Under Main (Check General > Fonts if missing - Thanks @SturmB!) we're going to set the font for non-mintty terminals, just for consistency: Hack, Size 16, Uncheck the option for an alternative font.
    2. Under Size&Position we're going to tweak the size of the final window. This applies for the quake style drop down too, which I'm going to lead you into setting up. Set width to 95%, height 75% (be sure to type the %!).
    3. Under Quake, make sure it's turned on!
    4. Under Confirm, turn off the new console / tab dupping confirms. Personally, I don't like them.
    5. IMPORTANT If anything, don't skip this setting: under Tasks, hit the '+' button to create a task that looks like this:
    1. Under Keys and Macros, here are my settings. Tweak as you like:
    1. Under Keyboard check 'Install keyboard hooks' (Might now be called Support special hotkeys if missing - Thanks @SturmB!)
    2. Under Paste make sure each mode is in 'Multi-line'. This only affects cmd / non-mintty terminals from what I've seen, but is pleasent to have set for when not using mintty.
  4. Save settings and hit Win+Down, run your task. Tada you have a ConEmu running cygwin, running mintty. Wonderful. This is what we'll be using to tweak from here out! If you're prompted to generate configuration files, feel free to. If you keep following, I'll be providing my configuration which you can poke around. We're also about to overwrite the default .zshrc with the oh-my-zsh one, so hold out on tweaking that!

3. Setting up oh-my-zsh and plugins

You're already running zsh, but now we're going to add a manager to handle plugins, updating, and themes. Not the most critical stuff, but this is the reason I went through all this trouble - might as well pay it off!

  1. Install oh-my-zsh the manual way. This is well down the page under Advanced Topics. Here's my summary:
  1. Close the current terminal and open a new one to load up oh-my-zsh. If it prompts you to update, do it.
  2. If you have a theme file and a .zshrc, now is the time to copy that over (~/.zshrc and ~/.oh-my-zsh/themes/). You can find mine on my GitHub if you would like a starting point.
    • Realize it does a few things like source a dir_colors file, add ssh keys on login, adds the vim generated promptline, and utilize my personal theme (also in that repo). (It's also subject to change!) Be sure to follow step 6 or remove the related lines from the .zshrc if you use mine!
    • Alternatively, feel free to also just edit the .zshrc generated by oh-my-zsh and pick a theme from one of the defaults for yourself! Oh-my-zsh provides samples online, google it.
  3. Install any oh-my-zsh plugins now. More information on the repo! My favorite is zsh-syntax-highlighting. If you would like that plugin, follow the link and install with the oh-my-zsh package manager guide. Quick tip: This plugin only works if it is loaded last in your .zshrc's plugins list. Yes, I know, how odd.

4. Mintty settings

This one's short, but this is where we configure mintty's cursor, font, and other stuff. Feel free to poke around.

  1. Right click inside your terminal.
  2. Hit options.
  3. Under text change the font to 'Hack' (or your powerline font of choice). Choose your font size (I like 9).
  4. When you're done poking around the rest of the settings (like cursor), hit Apply and Save.

5. Fixing input issues for python, node, and friends.

I had issues using input libraries from NodeJS and such. I was confused how Git Bash was able to function just fine, yet mintty was failing. The trick? Git Bash aliases node, python, and others to use winpty. Follow along to install winpty and setup the aliases. If you want more information, be sure to stop and read the repo!

Mintty download windows 10
  1. Download the release from here: https://github.com/rprichard/winpty
    • This means navigating to their releases and downloading the artifact (Cygwin tar, choose the correct binary for your platform i.e. x64)
  2. cd <path-to-extracted-files>
  3. Copy the needed files for installing: cp -an ./bin/* /usr/bin/. and cp -an ./lib/* /usr/lib/.
  4. Set permissions for the files with winpty at the start: chmod 755 /usr/bin/winpty* and chmod 755 /usr/lib/winpty*
  5. Ensure you have alias'd in your .zshrc: 'node = winpty node.exe'
    • Repeat for any other problematic programs like: ipython php php5 psql python2.7
    • If you want to see how and what GitBash does it this for, go to your cmder's install directory and open: vendorgit-for-windowsetcprofile.daliases.sh

6. Dir Colors, Vim, and the fancy promptline

This section is not very detailed as we're now talking about aesthetic stuff. Look at my github for my configuration files and tweak as you like. Make sure you add in the needed references inside your .zshrc, like using dir_colors and sourcing the prompt line's .sh file. This is what I'm doing with them:

  1. Copy your minttyrc and dir_colors files into their needed spots (see my github for examples, or google!): ~/.minttyrc and ~/.dir_colors
  2. Copy your vimrc into ~/.vimrc and install vundle: git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
  3. Launch vim and run :PluginInstall followed by :PromptlineSnapshot ~/.shell_prompt.sh airline to generate the nifty looking powerline prompt script (this needs to be sourced in .zshrc).

I can't run upgrade_oh_my_zsh

I ran into this once, and it was due to line endings being in dos instead of unix. This may have been because of a gitconfig setting or an issue with the repo -- I'm going to say it was me. If you run into line ending issues for anything, try this:

  1. Verify this is the issue by checking the file format. For upgrade_oh_my_zsh this means the issue is inside ~/.oh-my-zsh/tools/upgrade.sh.
    • I do this by opening the file in vim, where the filetype is displayed on the powerline. If the type is utf-8[dos], you got carriage returns (not desired here).
  2. Install dos2unix (man page) with apt-cyg install dos2unix. This is a simple utility to convert the line endings of a file.
  3. To convert a file just run dos2unix <path to file>. In this case, dos2unix ~/.oh-my-zsh/tools/upgrade.sh.

Linux is great for programming compared to Windows. If you miss the experienceyou get on Linux, maybe you should try Cygwin, whichset up a Linux-like environment on Windows platform. In this post, I want totalk about how to configure Cygwin and how to use mintty terminal on Windows 10to get excellent programming experience.

There is no official way to install a new package. Just run the Cygwin setuptool one more time and select the package you want to install. It will notrewrite the package you have installed, only the new package will be insatlled.

If the package download speed is slow, you can choose a local mirror forCygwin. In China, TUNA isgood.

Reference

On Windows 10, there is a builtin ssh program underC:/Windows/System32/OpenSSH/ssh.exe. You are probably using this program. Ifthat is the case, you have to install openssh yourself. Just run the Cygwinsetup program one more time to install the additional package. Then this issueshould disappear.

Reference

Cygwin use the popular mintty terminal as itsterminal emulator. In this part, I document serveral settings related tomintty.

How do I set up the mintty terminal emulator type, i.e., TERM variable?

Right-click Cygwin window title and choose Options..., go to Terminal, andchoose Type to be xterm-256color. That is all.

How to use an external color theme for mintty?

By default, mintty provides a few color themes. The color theme for mintty arejust a list of settings for different colors. There are serveral places whereyou can find mintty themes. A non-exhaustive list is:

  • A python tool with several builtin color themes, https://github.com/joakimkarlsson/mintty-colors

Save the color theme file under $CYGWIN_ROOT/usr/share/mintty/themes. Openmintty options (right click on Cygwin title bar), go to Looks pane and choosefrom the Theme pull-down menu a color theme you want to use.

Alternatively, create a .minttyrc file under your HOME. Paste the content ofcolor theme in this file and save it. The next time you open Cygwin, minttywill automatically use the configurations in .minttyrc.

References

Mintty Download Windows 10

How do I configure mintty to use the settings from a config file and what are the available options?

As I have said, create a .minttyrc under your HOME, and put mintty settingsin this file. To see all the options available, visit thispage.

How to open URL in browser

Cygwin Mintty Config

In the iTerm terminal, we can click an URL to open it in the browser, which isconvenient. Actually mintty also supports this feature.

But sometimes, Ctrl+click won’t work properly. It has something todo with the mouse mode of various programs. When mouse mode is enabled forNeovim and Tmux, to open an URL in browser, I have to useCtrl+Shift+click . If the mouse mode is turned off, Ican open an URL with just Ctrl+click.

References

Mintty For Windows 10

How to update mintty?

Cygwin Windows Is Searching For Mintty Missing Fishermen

It is the same as you install or update other packages. Run setup_x86_64.exeand install the latest version of Mintty.