Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 984 Bytes

File metadata and controls

37 lines (32 loc) · 984 Bytes

dotfiles

とりあえずインストール (mac)

$ brew install \
    ripgrep \
    tmux \
    prettier \
    black \
    jq \
    go \
    tig \
    ctop

Vimをビルド (mac)

$ mkdir -p ~/workspaces/vim && cd $_
$ git clone https://github.com/vim/vim.git
$ cd vim
$ ./configure --prefix=$HOME/workspaces/vim/dest --enable-fail-if-missing --enable-terminal --enable-multibyte \
    && make \
    && make install