Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
dotfilesCasualTalks
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
acchanAlexander
December 20, 2018
Technology
0
1.2k
dotfilesCasualTalks
acchanAlexander
December 20, 2018
Tweet
Share
More Decks by acchanAlexander
See All by acchanAlexander
いろんな職種や役割を経験したらコミュニケーションがとりやすくなった話
acchanalexander
1
820
practice-ios-app-1week
acchanalexander
1
180
webエンジニアが_2ヶ月Kotlin_Android_開発して思ったこと.pdf
acchanalexander
0
2.4k
develop-camp-201711
acchanalexander
0
93
you_can_start_jthree_programming
acchanalexander
0
93
Hearing_loss_story
acchanalexander
0
790
start docker study
acchanalexander
0
130
HealthHackMeetup
acchanalexander
1
1.7k
Other Decks in Technology
See All in Technology
AWS Systems Managerのハイブリッドアクティベーションを使用したガバメントクラウド環境の統合管理
toru_kubota
0
160
私がよく使うMCPサーバー3選と社内で安全に活用する方法
kintotechdev
0
110
Windows ファイル共有(SMB)を再確認する
murachiakira
PRO
0
280
【AWS】CloudTrail LakeとCloudWatch Logs Insightsの使い分け方針
tsurunosd
0
120
テストプロセスにおけるAI活用 :人間とAIの共存
hacomono
PRO
0
160
開発チームとQAエンジニアの新しい協業モデル -年末調整開発チームで実践する【QAリード施策】-
kaomi_wombat
0
240
Embeddings : Symfony AI en pratique
lyrixx
0
290
How to install a gem
indirect
0
1.6k
RGBに陥らないために -プロダクトの価値を届けるまで-
righttouch
PRO
0
110
AIエージェント時代に必要な オペレーションマネージャーのロールとは
kentarofujii
0
110
Phase06_ClaudeCode実践
overflowinc
0
2.1k
「通るまでRe-run」から卒業!落ちないテストを書く勘所
asumikam
2
650
Featured
See All Featured
How GitHub (no longer) Works
holman
316
150k
Google's AI Overviews - The New Search
badams
0
950
Designing Powerful Visuals for Engaging Learning
tmiket
0
300
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Making Projects Easy
brettharned
120
6.6k
Have SEOs Ruined the Internet? - User Awareness of SEO in 2025
akashhashmi
0
300
How to train your dragon (web standard)
notwaldorf
97
6.6k
What does AI have to do with Human Rights?
axbom
PRO
1
2.1k
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
220
Marketing Yourself as an Engineer | Alaka | Gurzu
gurzu
0
160
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
How STYLIGHT went responsive
nonsquared
100
6k
Transcript
俺の .bashrc, .gitconfig .vimrc acchan
自己紹介 acchan 主にサーバサイドエンジニア 日頃はPHP, Node.js, AWS 趣味でインフラとAndroidとiOS勉強中
.bashrc
.bashrc alias alias l='ls -la' alias tailf='tail -f' alias v='vim'
alias g='git'
実演
.bashrc prompt PS1='[\t \u \W]$ ' t: 時間 u: ユーザ名
W: カレントディレクトリ名
実演
.gitconfig
.gitconfg たくさん設定している https://github.com/acchanAlexander/d otfiles/blob/master/.gitconfig
.gitconfg よく使うものだけ抜粋
.gitconfg [alias] st = status ad = add ci =
commit co = checkout fe = fetch br = branch di = diff
実演
.bashrc のalias と .gitconfig の alias を 組み合わせることで 更にコマンドを短縮できる。
実演
.vimrc
.vimrc 便利なプラグインを紹介
.vimrc call neobundle#begin() NeoBundle 'jimsei/winresizer.git' NeoBundle 'grep.vim' call neobundle#end()
実演
dotfiles の setup について
.dotfilesSetup.sh mkdir -p ~/.vim/bundle git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle ln -s
~/dotfiles/.vimrc ~/.vimrc ln -s ~/dotfiles/.gitconfig ~/.gitconfig source ~/dotfiles/.bashrc ### add 'load this .bashrc command in your .bashrc' echo >> ~/.bashrc && echo '# setting' >> ~/.bashrc && echo 'source ~/dotfiles/.bashrc' >> ~/.bashrc
.dotfilesSetup.sh cd ~/dotfiles && source dotfilesSetup.sh
end