No description
Find a file
2025-01-01 11:03:47 -05:00
alacritty/.config/alacritty Migrate alacritty config 2024-11-10 21:19:50 -05:00
bin/bin Remove old color swap stuff 2024-12-31 12:30:36 -05:00
ghostty/.config/ghostty Allow light mode to be easily viewed 2025-01-01 10:59:15 -05:00
git Another git ignore 2024-10-02 21:41:12 -04:00
nvim/.config/nvim Remove color stuff from vim 2025-01-01 10:59:33 -05:00
ruby Use GNU stow to manage symlinks 2021-05-13 21:09:01 -04:00
tmux/.config/tmux Use tmux 3 style! 2023-07-27 23:53:23 -04:00
zsh Remove orbstack init 2024-10-28 22:13:34 -04:00
.gitignore Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
.mise.toml Allow ripgrep to search hidden in dotfiles 2024-09-19 08:53:25 -04:00
.ripgreprc Allow ripgrep to search hidden in dotfiles 2024-09-19 08:53:25 -04:00
install-todo.md Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
install.sh Remove alacritty 2025-01-01 11:03:47 -05:00
packages-darwin-brew-cask-personal.txt Add freecad 2024-05-27 09:42:25 -04:00
packages-darwin-brew-cask-work.txt More work 2023-12-01 09:48:28 -05:00
packages-darwin-brew-cask.txt Remove alacritty 2025-01-01 11:03:47 -05:00
packages-darwin-brew.txt Remove orbstack 2024-04-10 21:43:02 -04:00
packages-linux-apt.txt Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
packages-shared-brew.txt ( ͡° ͜ʖ ͡°) 2024-05-27 09:42:25 -04:00
README.md Update clone URL 2023-08-27 10:04:53 -04:00

dotfiles

Personal dotfiles managed via GNU stow.

Installation

cd $HOME
git clone https://git.atomaka.com/atomaka/dotfiles.git
cd dotfiles
./install.sh

Notes

  • Some homebrew packages (ie. vim) might be missing desired features
brew uninstall PACKAGE
brew edit PACKAGE # where there is no local directory named PACKAGE
# add compile options
brew install -s PACKAGE
  • Minor Ruby conflicts with brew/OpenSSL version/Ruby. This has worked, but also caused problems
export PATH="/home/linuxbrew/.linuxbrew/opt/openssl@3/bin:$PATH"
export LDFLAGS="-L/home/linuxbrew/.linuxbrew/opt/openssl@3/lib"
export CPPFLAGS="-I/home/linuxbrew/.linuxbrew/opt/openssl@3/include"
export PKG_CONFIG_PATH="/home/linuxbrew/.linuxbrew/opt/openssl@3/lib/pkgconfig"