VIM for Windows 10
The VIM editor is considered the original rock under Linux and Unix and is the standard editor under POSIX, even Mac OS X gives us the VIM editor, which can be called from the terminal.
Vim (Vi IMproved) is an evolution of the vi. The free open source program was released in 1991 by Bram Moolenaar – a powerful syntax highlight editor, widely used by developers when working with code and scripts, who works with Regex expressions has a versatile tool with VIM, which is now more advanced editor is available for almost any operating system.
Unix admins who work with Windows do not have to do without the usual editor, here you can also help with VIM for Windows. VIM is best obtained right away from https://www.vim.org/ with Download – PC: MS-DOS and MS-Windows, who wants to can perform the installation automatically with the Self-installing executable Binary, or copy the Runtime files vim-#rt.zip and the Win32 console executable vim-#w32.zip itself into the path C:\Program Files (x86)\vim\vim80.
The VIM configuration file
The VIM configuration takes place via environment variables, the entries are inserted with the key Win + X under System -> Advanced System Settings -> environment variables, under System Variables the path is added, here it is C:\Program Files (x86)\vim\vim80, then add the variable VIM, as the value is entered C:\Program Files (x86).

The configuration file _vimrc must come above the program folder to come under C:\Program Files (x86)\vim according to the value of the environment variable – VIM. If user setting, the file under the user profile path is at %USERPROFILE%.
With a symlink on VIM, the vi command becomes available. To do this, mklink from an administrator opened command prompt, use the Win + R = cmd key.
1 2 3 |
C:> mklink %systemroot%\System32\vi.exe "%ProgramFiles(x86)%\vim\vim80\vim.exe" |
For example, _vimrc (starting with underscore) this must be for all users under C:gt;Program Files (x86)gt;vimgt;, if user settings are to apply, _vimrc comes to %USERPROFILE%.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
" Maintainer:Don Matteo <think@unblog.ch> " Last change:2016 Dec 26 " " To use it, copy it to " for Unix and OS/2: ~/.vimrc " for Amiga: s:.vimrc " for MS-DOS and Win32: $VIM\_vimrc " for OpenVMS: sys$login:.vimrc " When started as "evim", evim.vim will already have done these settings. if v:progname =~? "evim" finish endif " Use Vim settings, rather than Vi settings (much better!). " This must be first, because it changes other options as a side effect. set nocompatible " allow backspacing over everything in insert mode set backspace=indent,eol,start " shortmess=aoOtI set cmdheight=2 set history=50 set ruler set incsearch set number set wildmenu set showcmd set hlsearch set ignorecase set smartcase set autoindent set laststatus=2 set visualbell set t_vb= set shell=powershell set shellcmdflag=-command syntax on color industry " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries " let &guioptions = substitute(&guioptions, "t", "", "g") " Don't use Ex mode, use Q for formatting map Q gq " CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo, " so that you can undo CTRL-U after inserting a line break. inoremap u " In many terminal emulators the mouse works just fine, thus enable it. if has('mouse') set mouse=a endif if has("gui_running") " Set a nicer font set guifont=Consolas:h11:cDEFAULT " Hide the toolbar set guioptions-=T " GUI is running or is about to start. " Maximize gvim window (for an alternative on Windows, see simalt below). set lines=38 columns=133 else " This is console Vim. if exists("+lines") set lines=45 endif if exists("+columns") set columns=110 endif endif |
Tip: With a Windows Explorer context menu extension you can create an open with VIM Editor menu entry. This procedure is shown in my Post Explorer Expand Context Menu.