Skip to content
Kei Tsuchiya edited this page Aug 23, 2022 · 10 revisions

Terminal

install vim

最新バージョンをソースからインストールする

# 古い vim を消す
sudo yum remove vim

git clone https://github.com/vim/vim.git
cd vim
make
sudo make install

install tmux

Mac

brew install tmux

CentOS 7

sudo yum install http://galaxy4.net/repo/galaxy4-release-7-current.noarch.rpm
sudo yum install tmux

CentOS 6

最新バージョンをソースからインストールする

sudo yum install automake
sudo yum install libtool

wget https://invisible-island.net/datafiles/release/byacc.tar.gz
tar zxvf byacc.tar.gz 
cd byacc-20200330/
./configure 
make
sudo make install

wget -O libevent-2.0.22-stable.tar.gz http://sourceforge.net/projects/levent/files/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz/download
tar zxf libevent-2.0.22-stable.tar.gz
cd libevent-2.0.22-stable
./configure
make
sudo make install

git clone git@github.com:tmux/tmux.git
cd tmux
sh autogen.sh
./configure
make
sudo make install
sudo echo /usr/local/lib /etc/ld.so.conf.d/libevent.conf

install dein's plugin

vim
:call dein#install()

install zsh to mac

# user
brew install zsh
# root
echo /usr/local/bin/zsh >> /etc/shells
# user
chsh -s /usr/local/bin/zsh

font for powerline

以下で Ricty をインストール後,ターミナルの設定から「Ricty Discord for Powerline」を選択する。

brew tap sanemat/font
brew install ricty --with-powerline
cp -f /usr/local/opt/ricty/share/fonts/Ricty*.ttf ~/Library/Fonts/
fc-cache -vf

以下で powerline 用の font をインストールする。

git clone https://github.com/powerline/fonts.git --depth=1
cd fonts
./install.sh
cd ..
rm -rf fonts