Closed4
Macのターミナルをドラキュラにする
↑完成形
Macのターミナルをzsh
+ prezto
+ Dracula(ドラキュラ) theme
で設定したときのメモです。
まずはデフォルトシェルをzsh
に変更します。
$ chsh -s /bin/zsh
$ echo $SHELL
/bin/zsh
続いて、preztoの設定を行います。
# リポジトリをクローンする
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
# 設定ファイルを作成する
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
# 設定ファイルを読み込む設定を行う
$ echo 'source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"' >> ~/.zshrc
gitのブランチ名をプロンプトに表示するための設定を追加します。
~/.zpreztorc
...
zstyle ':prezto:load' pmodule \
'environment' \
'terminal' \
'editor' \
'history' \
'directory' \
'spectrum' \
'utility' \
'completion' \
'syntax-highlighting' \
'autosuggestions' \
+ 'git' \
'prompt'
最後に、Draculaのテーマを設定します。
ターミナルのテーマは、以下を参考にぽちぽち設定します。
Dark theme for Terminal.app and 178+ apps — Dracula
Vimの設定は、以下です。
Dark theme for Vim and 178+ apps — Dracula
$ mkdir -p ~/.vim/pack/themes/start
$ cd ~/.vim/pack/themes/start
$ git clone https://github.com/dracula/vim.git dracula
~/.vimrc
let g:dracula_italic = 0
packadd! dracula
syntax enable
colorscheme dracula
以上です☺️
このスクラップは2023/02/14にクローズされました