Posts

Showing posts from August, 2026

VIM Setup using Miniforge for Windows 11

Image
 (A) Here are the steps for my Vim installation using Miniforge I've installed Vim through Miniforge using mamba. I have kept Vim in its own "box" so that it does not mess up my other projects or base installation. 1. Create "Tools" Environment mamba create -n my_tools -c conda-forge vim  mamba activate my_tools 2. Install Vim  mamba install vim   Note : Since Miniforge defaults to the conda-forge channel, you typically do not need to specify the channel explicitly with -c conda-forge, but doing so ensures you get the community version.  3. Verify the Installation . After the installation is completed, you can check if Vim is installed correctly by running:  vim --version You should see output that includes information about the installed Vim version and its features.  4. Create Vim Configuration (_vimrc) Configure Vim settings, e.g., to make the editor behaving nicely for Python (indenting correctly). In Windows, the configuration file is usually name...