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
1k
dotfilesCasualTalks
acchanAlexander
December 20, 2018
Tweet
Share
More Decks by acchanAlexander
See All by acchanAlexander
いろんな職種や役割を経験したらコミュニケーションがとりやすくなった話
acchanalexander
1
740
practice-ios-app-1week
acchanalexander
1
150
webエンジニアが_2ヶ月Kotlin_Android_開発して思ったこと.pdf
acchanalexander
0
2.2k
develop-camp-201711
acchanalexander
0
81
you_can_start_jthree_programming
acchanalexander
0
76
Hearing_loss_story
acchanalexander
0
740
start docker study
acchanalexander
0
120
HealthHackMeetup
acchanalexander
1
1.6k
Other Decks in Technology
See All in Technology
レイクハウスとはなんだったのか?
akuwano
15
2k
マルチデータプロダクト開発・運用に耐えるためのデータ組織・アーキテクチャの遷移
mtpooh
0
160
MCP server を作って Claude Desktop アプリから kintone へアクセスすると楽しい
r3_yamauchi
PRO
1
120
消し忘れリソースゼロへ!私のResource Explorer活用法
cuorain
0
140
GitLab SelfManagedをCodePipelineのソースに設定する/SetGitLabSelfManagedtoCodePipeline
norihiroishiyama
1
120
【Λ(らむだ)】アップデート機能振り返りΛ編 / PADjp20250127
lambda
0
120
プロダクト観点で考えるデータ基盤の育成戦略 / Growth Strategy of Data Analytics Platforms from a Product Perspective
yamamotoyuta
0
250
Redmineの意外と知らない便利機能 (Redmine 6.0対応版)
vividtone
0
190
プロダクト開発、インフラ、コーポレート、そしてAIとの共通言語としての Terraform / Terraform as a Common Language for Product Development, Infrastructure, Corporate Engineering, and AI
yuyatakeyama
6
1.6k
あなたはJVMの気持ちを理解できるか?
skrb
5
2k
Power BI は、レポート テーマにこだわろう!テーマのティア表付き
ohata_ds
0
120
Windows Server 2025 へのアップグレードではまった話
tamaiyutaro
2
260
Featured
See All Featured
A Modern Web Designer's Workflow
chriscoyier
693
190k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
3
380
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
52k
Making the Leap to Tech Lead
cromwellryan
133
9.1k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Being A Developer After 40
akosma
89
590k
Building Adaptive Systems
keathley
39
2.4k
Raft: Consensus for Rubyists
vanstee
137
6.8k
Why You Should Never Use an ORM
jnunemaker
PRO
55
9.2k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
Designing for humans not robots
tammielis
250
25k
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