I've following vimrc settings for Python environment, that works fine if I open GitBash directly:
" enable syntax highlighting
syntax enable
" show line numbers
set number
" set tabs to have 4 spaces
set ts=4
" indent when moving to the next line while writing code
set autoindent
" expand tabs into spaces
set expandtab
" when using the >> or << commands, shift lines by 4 spaces
set shiftwidth=4
" show the matching part of the pair for [] {} and ()
set showmatch
" enable all Python syntax highlighting features
let python_highlight_all = 1
But, when I'm running Git bash from inside ConsoleZ window, it doesn't seem to work. Is there some other settings that needs to be done? Haven't found anything about this anywhere.