Skip to content

Commit

Permalink
add chezmoi resources
Browse files Browse the repository at this point in the history
  • Loading branch information
ikmski committed Jan 5, 2023
1 parent 10f9114 commit ea5510f
Show file tree
Hide file tree
Showing 10 changed files with 10,845 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .chezmoiignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

{{ if ne .chezmoi.os "darwin" }}
.Brewfile
{{ end }}
39 changes: 39 additions & 0 deletions dot_Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
tap "github/gh"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
tap "sanemat/font"
brew "awscli"
brew "cmake"
brew "fzf"
brew "gcc"
brew "git"
brew "git-flow"
brew "git-lfs"
brew "gnupg"
brew "go"
brew "jq"
brew "ncdu"
brew "nmap"
brew "node"
brew "openvpn"
brew "peco"
brew "plantuml"
brew "tig"
brew "tmux"
brew "vim"
brew "wget"
brew "zplug"
brew "zsh"
brew "sanemat/font/ricty"
cask "1password"
cask "docker"
cask "dropbox"
cask "evernote"
cask "google-chrome"
cask "google-japanese-ime"
cask "iterm2"
cask "notion"
cask "openvpn-connect"
cask "osxfuse"
cask "slack"
4 changes: 4 additions & 0 deletions dot_bash_profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi

25 changes: 25 additions & 0 deletions dot_bashrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Source global definitions
if [ -f /etc/bashhrc ]; then
. /etc/bashhrc
fi

##########################################
# エイリアス
alias ll='ls -l -G'
alias ls='ls -l -G'
alias la='ls -la -G'

alias rm='rm -i'
alias cp='cp -ip'

##########################################
#
PS1='[\u \W]\$ '

# for Homebrew
export PATH=/usr/local/sbin:$PATH
export PATH=/usr/local/bin:$PATH



[ -f ~/.fzf.bash ] && source ~/.fzf.bash
Loading

0 comments on commit ea5510f

Please sign in to comment.