Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.85 KB

README.md

File metadata and controls

63 lines (45 loc) · 1.85 KB

Dotfiles

Terminal Alacritty
Multiplexer Tmux
Shell Zsh
Prompt Starship
Editor Vim / Neovim
Theme Material Deep Ocean
Fonts Source Code Pro for Powerline (for tmux)
JetBrains Mono Nerd (for everything else)

Installation

Config-only Installation (recommended)

cd ~
git clone https://github.com/ken-matsui/dotfiles.git
./dotfiles/setup/common/config.sh

Full Installation (only on macOS or Manjaro Sway)

Use this way only when you have a fresh environment.

bash -c "$(curl -fsSL https://raw.githubusercontent.com/ken-matsui/dotfiles/main/install.sh)"

Manual Font Installation (if necessary)

JetBrains Mono Nerd

cd /tmp
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/JetBrainsMono.zip
unzip JetBrainsMono.zip

mkdir -p ~/.local/share/fonts
mv *.ttf ~/.local/share/fonts

fc-cache -f -v
fc-list | grep JetBrains

Source Code Pro for Powerline

cd /tmp
git clone https://github.com/powerline/fonts.git
cd fonts/SourceCodePro

mkdir -p ~/.local/share/fonts
mv *.otf ~/.local/share/fonts

fc-cache -f -v
fc-list | grep 'Source Code Pro'