Skip to content

Instantly share code, notes, and snippets.

@phiryll
phiryll / #tools.md
Last active October 25, 2024 20:40
homebrew

Tools

Homebrew

Formulae

  • aspell
  • bash
  • dos2unix
  • gh
@phiryll
phiryll / #zsh.md
Last active June 4, 2024 21:29
zsh config

zsh config scripts

  • .zshrc
    located in your home directory
    This is mostly as it was created by oh-my-zsh
  • .zprofile
    located in your home directory
    This is as it was created by homebrew
  • ryll.zsh-theme
    located in ~/.oh-my-zsh/themes
@phiryll
phiryll / #git.md
Last active August 26, 2024 03:08
git config

git config files

  • config
    located at ~/.config/git/config
  • ignore
    located at ~/.config/git/ignore
@phiryll
phiryll / #ssh.md
Last active May 24, 2024 21:21
ssh config

ssh config file

  • config
    located at ~/.ssh/config
@phiryll
phiryll / #bash.md
Last active May 24, 2024 21:16
bash config

bash config scripts

These are outdated and obsolete. I'm using zsh now.

The script filenames all begin with ".", and so will be hidden by default. They should all be in your home directory.

  • .bashrc
    env variables, shell options, prompt
  • .bash_profile
    invokes .bashrc for login sessions
@phiryll
phiryll / #emacs.md
Last active August 26, 2024 03:07
emacs config

emacs config

The config filename begins with ".", and so will be hidden by default. It should be in your home directory.

To get markdown-mode and magit working, you have to first add the Melpa-Stable repo for emacs packages. You only need to do this once.

(require 'package)
(add-to-list 'package-archives
             '("melpa-stable" . "https://stable.melpa.org/packages/") t)