How to reload .emacs after changing it

emacs

How can I get Emacs to reload all my definitions that I have updated in .emacs without restarting Emacs?

Best Answer

You can use the command load-file (M-x load-file, then press return twice to accept the default filename, which is the current file being edited).

You can also just move the point to the end of any sexp and press C-xC-e to execute just that sexp. Usually it's not necessary to reload the whole file if you're just changing a line or two.