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 |
set -x XDG_CONFIG_HOME $HOME/.config && bash ./scripts/setup/dotfile.sh
Linux Server
curl -o $HOME/.bashrc https://raw.githubusercontent.com/grandcolline/dotfiles/main/bashrc && source $HOME/.bashrc
curl https://raw.githubusercontent.com/grandcolline/dotfiles/main/scripts/setup/linux.sh | bash
fish
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.fish
ssh-keygen -t ed25519
nvim ~/.ssh/config
# Host github github.com
# HostName github.com
# IdentityFile ~/.ssh/id_ed25519
# User git
chmod 644 ~/.ssh/config
and register pub key in here.
curl https://raw.githubusercontent.com/grandcolline/dotfiles/main/scripts/setup/linux.docker.sh | bash