Skip to content

Rmafive/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Robert's Configuration dotfiles

Table of Contents:

  1. ZSH Terminal Setup
  2. Atom configuration

ZSH iTerm Config

tl;dr

iTerm2

brew cask install iterm2

Recommended Theme

Oh My Zsh

URL: https://github.com/robbyrussell/oh-my-zsh

Install:

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Powerlevel9k

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

Update ~/.zshrc with ZSH_THEME="powerlevel9k/powerlevel9k".

My ~/.zshrc inlcudes my preferred Powerlevel prompt styling. See other options here

Additionally, see what other users are doing here.

Patched Font

Download and install a patched Powerline font or download the patched source code pro font in the fonts directory.

Set the font in iTerm (iTerm → Preferences → Profiles → Text → Change Font → Source Code Pro); restart iTerm.

Sublime Configuration

1. Create a directory at ~/bin

mkdir ~/bin

2. Copy sublime to the newly created ~/bin directory

ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl

3. Add the following to your ~/.zshrc file

export PATH=$PATH:$HOME/bin

NOTE: My included .zshrc already includes this

4. Set sublime as your default editor in your ~/.zshrc file

export EDITOR='subl'
export VISUAL='subl'

NOTE: My included .zshrc already includes this

5. Restart terminal and test the sublime command

subl ~/.zshrc

If your .zshrc file opens in Sublime you are good to go!

Source and additional resources for Sublime setup can be found here: https://gist.github.com/barnes7td/3804534

Atom Configuration

View my package list or generate your own package list:

 apm list --installed --bare > package-list.txt

Import my list using:

apm install --packages-file ./package-list.txt

About

Robert's Configuration dotfiles

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages