https://qiita.com/poiulkhjmnbv/items/6cd60ef0f7848a310df7
Source Code Pro フォントをインストールする
mkdir <download> # フォントをダウンロードしたいディレクトリに置き換える
cd <download>
wget https://github.com/adobe-fonts/source-code-pro/archive/2.010R-ro/1.030R-it.zip
unzip 1.030R-it.zip
https://miyazakikenji.wordpress.com/2016/08/29/spacemacs/
gitインストール
sudo apt-get install git-core
gitの設定
git config --global user.name "ユーザー名"
git config --global user.email "メイルアドレス"
https://qiita.com/Maizu/items/44b0498597937480ca0a
$ sudo add-apt-repository ppa:kelleyk/emacs
$ sudo apt-get update
$ sudo apt-get install emacs26
pacemacs の install
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
emacs起動で自動でspecemacsがインストール
とホームディレクトリに .spacemacs が生成
れが spacemacs のユーザー設定ファイル
基本は ~/.emacs.d を変更することなく, この設定ファイルのみを変更
emacs 25ではエラーがでる
.spacemacs 設定
;; my_setting ************************
;; color
;;文字色 背景色
(custom-set-faces
'(default ((t
(:background "#222222" :foreground "white")
))))
フォントサイズ
以下のsizeの数値を変更
ネットでも出てこずこの結論にいたるまで何日かかかる
dotspacemacs-default-font '("Source Code Pro"
:size 12.5
:weight normal
:width normal)
0 件のコメント:
コメントを投稿