LoginSignup
0
1

More than 1 year has passed since last update.

anthy set up

Posted at
# anthy
cd /usr/local/arch/
mkdir anthy
cd anthy/
curl -L https://ja.osdn.net/projects/anthy/downloads/37536/anthy-9100h.tar.gz/ -o anthy-9100h.tar.gz
cd /usr/local/src/
tar zxvf ../arch/anthy/anthy-9100h.tar.gz
cd anthy-9100h/
./configure 2>&1 | tee configure.log
make 2>&1 | tee make.log
sudo make install 2>&1 | tee make-install.log
vi .emacs
---add .emacs---
;; anthy
(setq load-path (cons "/usr/local/share/emacs/site-lisp/anthy/" load-path))
(load-file "/usr/local/share/emacs/site-lisp/anthy/leim-list.el")
(load-library "anthy")
(setq default-input-method 'japanese-anthy)
(define-obsolete-variable-alias 'last-command-char 'last-command-event)
(define-obsolete-function-alias 'string-to-int 'string-to-number)
----------------
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1