Running windows 8.1, package intallation went fine.
Enabling with M-x ergoemacs-mode
works like a charm, but doing this every time I start up Emacs gets quite tiresome.
adding
(setq ergoemacs-theme nil) ;; Uses Standard Ergoemacs keyboard theme
(setq ergoemacs-keyboard-layout "us") ;; Assumes QWERTY keyboard layout
(ergoemacs-mode 1)
to ~/.emacs
as advised here gets me the following error:
Warning (initialization): An error occurred while loading `c:/Users/UserName/AppData/Roaming/.emacs':
Symbol's function definition is void: ergoemacs-mode
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the `--debug-init' option to view a complete error backtrace.
I don't have a clue about how to do this debug mode properly (get No Match in return), but in the manual I found how to evaluate each expression. using C-x C-e
Evaluating first two of the added lines give me nil
and "us"
, and evaluating the last line enables ergoemacs-mode.
in my ~/.emacs
I also found this block of code:
'(ergoemacs-ctl-c-or-ctl-x-delay 0.2)
'(ergoemacs-handle-ctl-c-or-ctl-x (quote both))
'(ergoemacs-ini-mode t)
'(ergoemacs-keyboard-layout "us")
'(ergoemacs-mode nil)
'(ergoemacs-smart-paste nil)
'(ergoemacs-theme "standard")
'(ergoemacs-theme-options nil)
'(ergoemacs-use-menus t)
Neither changing '(ergoemacs-mode nil)
to (ergoemacs-mode 1)
, removing that line OR changing '(ergoemacs-mode nil)
to (ergoemacs-mode 1)
and
removing the other 3 lines works.
Please advise.