Skip to content

pineapplegiant/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

My dotfiles πŸ›Έ

This is the safekeeping of my terminal environment! πŸ‘½

Neofetch information

  • I use the XDG_SPECIFICATION for my code to attempt to clean up my home directory
    • XDG_CACHE_HOME="${XDG_CACHE_HOME:-${HOME}/.cache}"
    • XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/.config}"
    • XDG_DATA_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}"

Directory Structure

.
β”œβ”€β”€ .cache/
β”œβ”€β”€ .config/ -> ~/.config (symlinked to $HOME)
β”œβ”€β”€ .local/
β”œβ”€β”€ .profile -> ~/.profile (symlinked to $HOME)
β”œβ”€β”€ .zprofile -> ~/.zprofile (symlinked to $HOME)
β”œβ”€β”€ README.md
β”œβ”€β”€ neofetch.png
└── install/ -> Brew packages & MacOSX setup

4 directories, 4 files

Essential Programs I use daily:

  • Ghostty - It's nice
  • Neovim - I love Neovim πŸ”₯
  • ZShell - Better than Bash πŸ€“
  • Karabiner - I like to remap the right command on MacOSX to Ctrl ⌨
  • Rectangle - A better window managing experience on Mac πŸ‘“
  • Zed - It's a pretty fast text editor too, if I need some more UI

Colors:

Setup (doesn't really work tbh 😳)

  1. Run ./install/mac-os-setup to install brew, git, and additional brew packages and settings:
  curl "https://raw.githubusercontent.com/pineapplegiant/dotfiles/supreme-overlord/install/mac-os-setup" | bash
Other Brew Packages I really like

Fonts

  • Nerd Fonts
    • brew install --cask font-firamono-nerd-font-mono
    • brew install --cask font-sauce-code-pro-nerd-font

Apple Settings Config

Prompt

Spaceship prompt

  • brew install -g spaceship-prompt

System Settings:

Run these to make key repeat faster:

  • defaults write -g KeyRepeat -int 4
  • defaults write -g InitialKeyRepeat -int 15

Run this to show full paths in finder:

  • defaults write com.apple.finder _FXShowPosixPathInTitle -bool true; killall Finder
  • Finder -> View > Show Status bar
  • Change Caps lock to ESC -> Taken care of in the Karabiner

Run this to make "Emulated Vim" repeat better defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false