Skip to content

Instantly share code, notes, and snippets.

@corona6
Last active July 18, 2020 14:53
Show Gist options
  • Save corona6/8438f9b22478ab1e8973e14dd7fcbb87 to your computer and use it in GitHub Desktop.
Save corona6/8438f9b22478ab1e8973e14dd7fcbb87 to your computer and use it in GitHub Desktop.
my tools

my tools

Homebrew

  • fish
  • fzf
  • git

Software

Settings

.config/fish/config.fish

set PATH $PATH /home/linuxbrew/.linuxbrew/bin

source ~/.asdf/asdf.fish

set -U FZF_COMPLETE 2

alias g='git'

.gitconfig

[alias]
  st = status
  ft = fetch
  co = checkout
  br = branch
  bra = branch -a
  brm = branch --merged
  brn = branch --no-merged
[pager]
  log = diff-highlight | less
  show = diff-highlight | less
  diff = diff-highlight | less
[interactive]
  diffFilter = diff-highlight
[branch]
  sort = -committerdate

vscode settings.json

{
    "editor.fontFamily": "'Source Han Code JP'",
    "editor.fontSize": 13,
    "terminal.integrated.inheritEnv": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment