Setting input method of Emacs on launch

1k Views Asked by At

I have set my default-input-method variable to "english-dvorak":

(custom-set-variables
    '(default-input-method "english-dvorak"))

When I launch Emacs, this input method is not selected. How can I make it so that all buffers by default open in this input method?

1

There are 1 best solutions below

0
On BEST ANSWER
(defadvice switch-to-buffer (after activate-input-method activate)
  (activate-input-method "english-dvorak"))