Skip to content

jmaver-plume/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Usage

cd ~/Documents/code
git clone git@github.com:jmaver-plume/dotfiles.git .dotfiles
cd .dotfiles
./install

How to add a new git submodule zsh package

  • Add a git submodule.
git submodule add https://github.com/zsh-users/zsh-syntax-highlighting.git
  • Add link to install.conf.yaml.
- link:
    ...other
    ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting: zsh-syntax-highlighting
  • Add plugin to zshrc.
plugins=(
  ...other
  zsh-syntax-highlighting
)
  • Run the install script.
./install

Links

  • Dotbot: Dotbot makes installing your dotfiles as easy as git clone $url && cd dotfiles && ./install, even on a freshly installed system!
  • Managing your dotfiles: Blog post on how to manage dotfiles
  • crzysdrs/dotfiles: Example of dotfiles configuration provided by writer of Dotbot.
  • anishathalye/dotfiles: Example of dotfiles configuration from writer of Dotbot.
  • iraquitan/dotfiles: Example of dotfiles configuration, which contains setting up oh-my-zsh.