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
acchanAlexander
December 20, 2018
Technology
0
990
dotfilesCasualTalks
acchanAlexander
December 20, 2018
Tweet
Share
More Decks by acchanAlexander
See All by acchanAlexander
いろんな職種や役割を経験したらコミュニケーションがとりやすくなった話
acchanalexander
1
680
practice-ios-app-1week
acchanalexander
1
140
webエンジニアが_2ヶ月Kotlin_Android_開発して思ったこと.pdf
acchanalexander
0
2.2k
develop-camp-201711
acchanalexander
0
69
you_can_start_jthree_programming
acchanalexander
0
62
Hearing_loss_story
acchanalexander
0
710
start docker study
acchanalexander
0
110
HealthHackMeetup
acchanalexander
1
1.6k
Other Decks in Technology
See All in Technology
Namespace, Now and Then
tagomoris
0
170
OCI コスト管理
ocise
1
120
Azure Cosmos DB での時系列ログの運用と改善
sansantech
PRO
0
190
Dify - LINE Bot連携 考え方と実用テクニック
uezo
5
1.1k
[RSJ24] Task Success Prediction for Open-Vocabulary Manipulation Based on Multi-Level Aligned Representations
keio_smilab
PRO
0
220
夏休みの(最後の)宿題 for JuliaTokyo #12
antimon2
0
130
すぐに始めるAWSコスト削減。短期でできる改善策と長期的な運用負荷軽減への取り組み方を解説
ncdc
1
360
疎通2024
sadnessojisan
4
670
ことばをそろえる / Bridging the Terminology Gap
amaotone
5
1k
いまからでも遅くない! コンテナでWebアプリケーションを 動かしてみよう(1)Gitハンズオン
nomu
0
280
デジタル化・DX推進あるある
y150saya
0
220
タイミーのBraze活用 ~PUSH通知を活用したレコメンド~
ozeshun
2
120
Featured
See All Featured
A Tale of Four Properties
chriscoyier
155
22k
Writing Fast Ruby
sferik
623
60k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
24
2k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
225
22k
Raft: Consensus for Rubyists
vanstee
135
6.5k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
42
2k
What's new in Ruby 2.0
geeforr
340
31k
Robots, Beer and Maslow
schacon
PRO
157
8.1k
It's Worth the Effort
3n
182
27k
StorybookのUI Testing Handbookを読んだ
zakiyama
25
5k
Gamification - CAS2011
davidbonilla
79
4.9k
YesSQL, Process and Tooling at Scale
rocio
167
14k
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