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
1.2k
0
Share
dotfilesCasualTalks
acchanAlexander
December 20, 2018
More Decks by acchanAlexander
See All by acchanAlexander
いろんな職種や役割を経験したらコミュニケーションがとりやすくなった話
acchanalexander
1
860
practice-ios-app-1week
acchanalexander
1
180
webエンジニアが_2ヶ月Kotlin_Android_開発して思ったこと.pdf
acchanalexander
0
2.4k
develop-camp-201711
acchanalexander
0
96
you_can_start_jthree_programming
acchanalexander
0
100
Hearing_loss_story
acchanalexander
0
800
start docker study
acchanalexander
0
140
HealthHackMeetup
acchanalexander
1
1.7k
Other Decks in Technology
See All in Technology
大学生が本気でDatabricksを活用してDiscordサークルをデータ駆動させてみた
phantomjuju
1
410
Diagnosing performance problems without the guesswork
elenatanasoiu
0
160
AI活用を推進するために ファインディが下した、一つの小さな決断
starfish719
0
240
Platform Engineering as a Product: Criteria for Improvement and Multi-Tenant Design
kumorn5s
0
500
【5分でわかる】セーフィー エンジニア向け会社紹介
safie_recruit
0
50k
タクシーアプリ『GO』の実践的データ活用
mot_techtalk
2
130
Mastering Ruby Box
tagomoris
3
150
インフラが苦手でも大丈夫! 紙芝居 Kubernetes -WWGT 10周年編-
aoi1
1
350
ChatworkとBPaaS 異なる特性で学んだAI機能開発の ベストプラクティス
kubell_hr
2
2.6k
DevOps Agentで始めるAWS運用 〜フロンティアエージェントが変える運用の現場〜
nyankotaro
1
180
形式手法特論:公平性制約の位相的特徴づけ #kernelvm / Kernel VM Study Kansai 12th
ytaka23
1
710
サプライチェーンセキュリティの空白地帯 - 信頼できる”依存性”の未来を考える
rung
PRO
2
680
Featured
See All Featured
How STYLIGHT went responsive
nonsquared
100
6.2k
Lightning talk: Run Django tests with GitHub Actions
sabderemane
0
190
Designing for humans not robots
tammielis
254
26k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
254
22k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
380
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.5k
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.5k
Documentation Writing (for coders)
carmenintech
77
5.4k
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
1
250
How to train your dragon (web standard)
notwaldorf
97
6.7k
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
520
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