1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu11.10にmigemoをいれる

Posted at

ローマ字でインクリメンタルサーチできるようにmigemoをいれました。

Ubuntu11.10でRuby実装のmigemoをパッケージでいれたのですがうまく動作しなかったので、cmigemoを使うことにしました。

標準ではcmigemoのパッケージはないのでPPAをリポジトリに追加します。

$ sudo add-apt-repository ppa:kakurasan/stable
$ sudo apt-get update

elispが必要なので、migemoをいれておきます。

$ sudo apt-get install migemo

cmigemoをいれます。

$ sudo apt-get install cmigemo

下記を設定ファイルに追加します。

.emacs.d/init.el
(load "migemo")
(setq migemo-coding-system 'euc-jp-unix)
(setq migemo-command "cmigemo")
(setq migemo-options '("-q" "--emacs" "-i" "\a"))
(setq migemo-user-dictionary nil)
(setq migemo-regex-dictionary nil)
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?