This problem can be solved using Vim keymap option. It allows to define an
alternate keyboard mapping to use in Insert, Replace and Command-line modes.
There are many predefined keymaps for a large set of languages, you can browse
them all in Vim itself using :e $VIMRUNTIME/keymap.
To switch between default and alternate keymap in Insert, Replace or
Command-line modes, use Ctrl+^. Changing keymap affects
text input only, keyboard behaviour in Normal mode stays default regardless of
the current keymap setting. You can leave Insert mode writing Greek, and
immediately use Normal mode Vim keybindings without switching keyboard layout.
When you return to Insert or Replace mode (or, for example, start searching by
/), Vim will switch you back to Greek keymap automatically. That way,
keymap is remembered between inserts (except for Command-line mode in which it
is necessary to type in ASCII an Ex command first).
To enable UTF-8 Greek keymap permanently add the following line to your
.vimrc file.
:set keymap=greek_utf-8
Note that usually there are several keymaps provided for one language, which
differ only by encoding, so you can choose one that suits your configuration.
With the keymap option set, you are supposed to work in Vim using your
system English keyboard layout and switch keymap using
Ctrl+^ (and not your system-wide layout switch).
I also recommend setting the options below.
:set iminsert=0
:set imsearch=-1
See :help iminsert and :help imsearch to ensure that it does not
contradict with your configuration (i.e. you do not use :lmap or certain
Input Method).
There is also a special language mode, which was introduced in Vim earlier
than keymap, as far as I know, and allows to achieve somewhat like keymap by
manual specifying letter pairs that correspond to the keys on keyboard in the
langmap option. Personally, I prefer (and recommend) using keymap
instead. (My native language is not English too, and I use similar to the
described above keymap configuration.)
In conclusion, all the above said is equally applicable to any other language
Vim has a keymap for.