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
1.1k
dotfilesCasualTalks
acchanAlexander
December 20, 2018
Tweet
Share
More Decks by acchanAlexander
See All by acchanAlexander
いろんな職種や役割を経験したらコミュニケーションがとりやすくなった話
acchanalexander
1
770
practice-ios-app-1week
acchanalexander
1
160
webエンジニアが_2ヶ月Kotlin_Android_開発して思ったこと.pdf
acchanalexander
0
2.3k
develop-camp-201711
acchanalexander
0
84
you_can_start_jthree_programming
acchanalexander
0
80
Hearing_loss_story
acchanalexander
0
760
start docker study
acchanalexander
0
130
HealthHackMeetup
acchanalexander
1
1.6k
Other Decks in Technology
See All in Technology
ハードウェアとソフトウェアをつなぐ全てを内製している企業の E2E テストの作り方 / How to create E2E tests for a company that builds everything connecting hardware and software in-house
bitkey
PRO
1
120
下手な強制、ダメ!絶対! 「ガードレール」を「檻」にさせない"ガバナンス"の取り方とは?
tsukaman
2
420
dbt開発 with Claude Codeのためのガードレール設計
10xinc
2
1.1k
S3アクセス制御の設計ポイント
tommy0124
3
190
開発者を支える Internal Developer Portal のイマとコレカラ / To-day and To-morrow of Internal Developer Portals: Supporting Developers
aoto
PRO
1
440
今!ソフトウェアエンジニアがハードウェアに手を出すには
mackee
11
4.6k
なぜテストマネージャの視点が 必要なのか? 〜 一歩先へ進むために 〜
moritamasami
0
210
RSCの時代にReactとフレームワークの境界を探る
uhyo
10
3.3k
バッチ処理で悩むバックエンドエンジニアに捧げるAWS Glue入門
diggymo
3
190
5年目から始める Vue3 サイト改善 #frontendo
tacck
PRO
3
210
スマートファクトリーの第一歩 〜AWSマネージドサービスで 実現する予知保全と生成AI活用まで
ganota
1
200
Kiroと学ぶコンテキストエンジニアリング
oikon48
6
9.9k
Featured
See All Featured
Making Projects Easy
brettharned
117
6.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Site-Speed That Sticks
csswizardry
10
810
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
111
20k
A Modern Web Designer's Workflow
chriscoyier
696
190k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Producing Creativity
orderedlist
PRO
347
40k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
187
55k
The Power of CSS Pseudo Elements
geoffreycrofte
77
6k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
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