Run vim without loading .vimrc but loading plugins

vim

Solution

Use `-u NORC` instead of `-u NONE`. See `:help --noplugin`.

Problem

I'm running `gvim -u NONE` to open gvim without using `.vimrc`, but in the same time I would like to be able to call the commands from the plugins inside the plugin/ folder. I tried it running `:filetype plugin` on but it doesn't work.. Any idea how to do that?

Original source