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
830
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
AIエージェントを構築して感じた、AI時代のCDKとの向き合い方
smt7174
1
250
Data Hubグループ 紹介資料
sansan33
PRO
0
2.9k
Eight Engineering Unit 紹介資料
sansan33
PRO
3
7.2k
AI時代にデータ基盤が持つべきCapabilityを考える + Snowflake Data Superheroやっていき宣言 / Considering the Capabilities Data Platforms Should Have in the AI Era + Declaration of Commitment as a Snowflake Data Superhero
civitaspo
0
110
Do Ruby::Box dream of Modular Monolith?
joker1007
1
270
JOAI2026講評会資料(近藤佐介)
element138
1
150
新メンバーのために、シニアエンジニアが環境を作る時代
puku0x
0
1.1k
AWS Agent Registry の基礎・概要を理解する/aws-agent-registry-intro
ren8k
1
160
Azure PortalなどにみるWebアクセシビリティ
tomokusaba
0
360
2026年に相応しい 最先端プラグインホストの設計<del>と実装</del>
atsushieno
0
130
自分のハンドルは自分で握れ! ― 自分のケイパビリティを増やし、メンバーのケイパビリティ獲得を支援する ― / Take the wheel yourself
takaking22
1
790
Snowflake Intelligence導入で 分かった活用のコツ
wonohe
0
110
Featured
See All Featured
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
Large-scale JavaScript Application Architecture
addyosmani
515
110k
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
470
GitHub's CSS Performance
jonrohan
1032
470k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
97
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
230
Gemini Prompt Engineering: Practical Techniques for Tangible AI Outcomes
mfonobong
2
360
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
0
200
Money Talks: Using Revenue to Get Sh*t Done
nikkihalliwell
0
200
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.2k
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