my config files...
| Name | What |
|---|---|
| Git | version-control system |
| Fish | main command line shell |
| NeoVim | main editor |
| tmux | terminal multiplexer |
| zoxide | tool for quick access to directories |
| fzf | fuzzy finder for terminal & vim |
| fd | file search |
| ripgrep | tool for recursively searches directories |
| expect | |
| gh | GitHub on the command line |
| mycli | terminal client for MySQL |
/opt/homebrew/bin/brew install git fish neovim tmux zoxide fzf fd ripgrep expect gh
set -x XDG_CONFIG_HOME $HOME/.config && bash ./scripts/setup/dotfile.shLinux Server
curl -o $HOME/.bashrc https://raw.githubusercontent.com/grandcolline/dotfiles/main/bashrc && source $HOME/.bashrccurl https://raw.githubusercontent.com/grandcolline/dotfiles/main/scripts/setup/linux.sh | bashfish
cd ~/develop/src/github.com/grandcolline/dotfiles
set -x XDG_CONFIG_HOME $HOME/.config && bash ./scripts/setup/dotfile.sh
echo "set -x PC_NAME 'リモートPC'" > $HOME/.config/fish/conf.d/remote.local.fishssh-keygen -t ed25519
nvim ~/.ssh/config
# Host github github.com
# HostName github.com
# IdentityFile ~/.ssh/id_ed25519
# User git
chmod 644 ~/.ssh/configand register pub key in here.
curl https://raw.githubusercontent.com/grandcolline/dotfiles/main/scripts/setup/linux.docker.sh | bash