Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Macへのspacemacsインストールメモ

$
0
0

普段エディタとして Emacsを使用していますが、vimとのいいとこ取りをした(?) 「spacemacs」 なるものがあることを(今さら)知ったので、インストールして使うことにしました。

公式のインストール手順も丁寧に書かれているし、特につまずくところもないのですが、メモとして残しておきます。

spacemacs2.png

インストール

事前に

インストール済みEmacsのアンインストール

ベースとするEmacsとして、公式のインストール手順にも記載されている emacs-plusを使うので、
すでにEmacsがインストールされている場合はアンインストールしておきます。

.emacsの退避

既存のEmacs設定 ~/.emacs.dおよび ~/.emacsをリネームするなどして退避しておきます。

$ cd ~
$ mv .emacs.d .emacs.d.bak
$ mv .emacs .emacs.bak

emacs-plusのインストール

改めて emacs-plusをインストールします。

$ brew tap d12frosted/emacs-plus
$ brew install emacs-plus --with-spacemacs-icon$ ln-s /usr/local/opt/emacs-plus/Emacs.app /Applications

spacemacsのインストール

spacemacsをインストールします。
インストールというより、 spacemacs用に構成された設定ファイル群 .emacs.dをGutHubからクローンして配置するだけですね。

推奨フォントのインストール

公式のインストール手順では任意になっていますが、見やすいフォントなのでインストールしておきます。

$ brew tap caskroom/fonts && brew cask install font-source-code-pro

spacemacsのクローン

GitHub から、spacemacsをクローンして ~/.emacs.dとして配置します。

$ cd ~
$ git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d

Emacsの起動

Emacsを起動します。

$ emacs

spacemacsのインターフェースで起動すれば、インストールは成功です。

first_run.png

基本設定

初回起動時に、いくつかの基本設定をどうするか聞いてきます。

キーバインド

What is your preferred editing style?
  Among the stars aboard the Evil flagship (vim)
  On the planet Emacs in the Holy control tower (emacs)

キーバインドをvim風にするか、emacsのままにするかを選択します。
spacemacsの名の通り、vim風にすることで(escではなく) spaceによるモード切り替えができるようになるのが最大のメリットです。

自分はあくまでEmacsキーバインドを使いたかったので、emacsを選択しました。

ちなみに、ここでは選択肢として出てこないですが、hybridと言うキーバインドもあります。(spacemacsの設定ファイル ~/.spacemacsで変更できます)
ただ、vimのキーバインドが優先のようで、Emacsキーバインド派には使いにくいなーと思います。

spacemacsの構成

What distribution of spacemacs would you like to start with?
  The standard distribution, recommended (spacemacs)
  A minimalist distribution that you can build on (spacemacs-base)

spacemacsを標準構成にするか、最小構成にするかを選択します。

推奨の spacemacsを選択しました。

補完フレームワークの選択

What type of completion framework do you want?
  A heavy one but full-featured (helm)
  A lighter one but still very powerful (ivy)
  None (not remomended)

編集時の補完に何を使うかを選択します。
この辺、詳しくないですが 君は誰とEmacsる? (補完インターフェイス紹介篇)を参考に、軽量そうな ivyにしました。

カスタマイズ

あとはお好みでカスタマイズしていきます。
spacemacsでは、設定は通常の ~/.emacs.d/init.elではなく ~/.spacemacsに記述していきます。

ターミナル内で起動する

ターミナル上で emacsコマンドで起動すると、ターミナル上ではなく別ウィンドウでアプリとして起動してしまいます。
-nwオプションを指定することでターミナル上で起動できますが、毎回指定するのが面倒なので ~/.bashprofile~/.zshrcでエイリアスを切っておきます。

alias emacs='emacs -nw'

レイヤーの導入

レイヤーのインストール

通常のEmacsで追加機能をインストールするには、package-installなどを使ってインストールしますが、
spacemacsでは「レイヤー」と呼ばれる独自の機能拡張の仕組みを使います。

設定ファイル ~/.spacemacsに、インストールするレイヤーを指定する項目があり、
そこにインストールしたいレイヤーを追記することで起動時に自動的にインストールされます。

~/.spacemacs
;; List of configuration layers to load.dotspacemacs-configuration-layers'(;; ----------------------------------------------------------------;; Example of useful layers you may want to use right away.;; Uncomment some layer names and press <SPC f e R> (Vim style) or;; <M-m f e R> (Emacs style) to install them.;; ----------------------------------------------------------------ivy;; auto-completion;; better-defaultsemacs-lisp;; git;; markdown;; org;; (shell :variables;;        shell-default-height 30;;        shell-default-position 'bottom);; spell-checking;; syntax-checking;; version-control)

この状態では、(起動時に選択した補完フレームワークの)ivyが有効化されています。
レイヤー一覧からインストールしたいレイヤーを探して、ここに追記していけばOKです。

あと、特定のファイル(JSONとかYAMLとか)を開こうとすると、対応するレイヤーをインストールするか聞いてくるので、そこで都度インストールしても良いです。

僕は以下のレイヤーをインストールしました。

レイヤー説明
ivyキーワード補完(初回起動時に選択)
better-defaultsEmacsキーバインドの機能強化
osxmacOS向けの機能強化
gitGitクライアント(magit)を使えるようにする
version-controlバージョン管理のサポート。変更行にマークが付いたりする。
emacs-lispEmacs Lisp の言語サポート(デフォルトで有効になってる)
markdownマークダウンの言語サポート
htmlHTMLの言語サポート
javascriptJavaScriptの言語サポート
yamlYAMLの言語サポート
javaJavaの言語サポート
scalaScalaの言語サポート
pythonPythonの言語サポート
sqlSQLの言語サポート

パッケージの導入

前述の通り、spacemacsの機能追加はレイヤーを追加するのが基本ですが、
レイヤーとして提供されていないパッケージについては、パッケージ単体で導入することも可能です。

パッケージのインストール

~/.spacemacsdotspacemacs-additional-packagesにインストールしたいパッケージを追記します。

~/.spacemacs
;; List of additional packages that will be installed without being;; wrapped in a layer. If you need some configuration for these;; packages, then consider creating a layer. You can also put the;; configuration in `dotspacemacs/user-config'.dotspacemacs-additional-packages'(minimap)

パッケージの設定

dotspacemacs-additional-packagesで追加したパッケージの設定は user-config()関数に記述します。

~/.spacemacs
(defundotspacemacs/user-config()"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration.
This is the place where most of your configurations should be done. Unless it is
explicitly specified that a variable should be set before a package is loaded,
you should place your code here.";; MiniMapを右に表示する;; https://github.com/dengste/minimap/blob/master/minimap.el(setq-defaultminimap-window-location'right))

ユーザーの独自設定

ユーザー独自の設定は、~/.spacemacsuser-init()関数に記述するようです。

僕の場合は以下の設定を追加しました。

~/.spacemacs
(defundotspacemacs/user-init()"Initialization function for user code.
It is called immediately after `dotspacemacs/init', before layer configuration
executes.
 This function is mostly useful for variables that need to be set
before packages are loaded. If you are unsure, you should try in setting them in
`dotspacemacs/user-config' first.";; 初期Frameサイズを指定(setqinhibit-startup-screent)(setqinitial-frame-alist'((top.30)(left.70)(width.180)(height.55)));; 初期モードをtextモードにする(setqinitial-major-mode'text-mode);; ウィンドウを半透明にする(ifwindow-system(progn(set-frame-parameternil'alpha95)));; Magit(Gitクライアント)をフルスクリーンで表示する;; https://github.com/syl20bnr/spacemacs/tree/master/layers/%2Bsource-control/git#magit-status-fullscreen(setq-defaultgit-magit-status-fullscreent);; Ctrl+x g でMagitを起動する(global-set-key(kbd"C-x g")'magit-status))

キーバインド

  • 公式ドキュメントに コマンド一覧があります。

    • vimキーバインドの SPCと Emacsキーバインドの Alt-mは同義なので、読み替えれば同じ操作ができます。
      例えば、終了は vimキーバインドでは SPC q qですが、Emacsキーバインドでは Alt-m q qです。
      もちろん、Emacs標準の Ctrl-x Ctrl-cでも終了できます。
  • チートシート spacemacs-cheatsheet

こんなのあるんだ〜と思ったキーバインド

キーバインドコマンド説明
Alt-F10 or Alt-m T Mtoggle-frame-maximizedウィンドウを最大化/最小化します。
Alt-m T ncycle-spacemacs-themeダークテーマとライトテーマを切り替えます。
Alt-m f tneo-tree左にディレクトリツリー(NeoTree)を表示します。
Alt-m g smagit-statusGitクライアント magitを起動します。
Alt-m f rRecent files最近開いたファイルの一覧を表示します。
Alt-m z .FoldingJSONやYAMLなどの要素を開いたり閉じたりします。
Alt-ENTER g gspacemacs/jump-to-definitionカーソル位置(型は関数など)の定義にジャンプします。
Ctrl-SSwiperSwiperでインクリメンタルサーチします。
Ctrl-c p lprojectfile-find-finle-in-directoryディレクトリ(サブディレクトリ含む)下のファイルをファイル名で探します。

最後に

vimキーバインドを使わないにしても、素のEmacsをいちからカスタムしていくよりもお手軽だと思います。
(逆に言えば、細かいカスタマイズはやりにくいかもしれませんね)

色々な機能が追加されていて、起動がやや遅い(3秒くらい待たされる感じ)のがネックですが、便利だとは思いますね。

spacemacs.png

参考文献


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>