Go to file
Andrew Tomaka 8aaaba07fe
Update clone URL
2023-08-27 10:04:53 -04:00
alacritty/.config/alacritty Try out some colors... 2022-09-15 22:52:12 -04:00
bin/bin Prefer USER to USERNAME 2022-12-10 09:46:21 -05:00
git Alias adding git trailers 2023-04-08 01:40:42 -04:00
nvim/.config/nvim Swap line numbering 2023-04-08 08:37:05 -04: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 Load orbstack 2023-08-27 10:04:04 -04:00
.gitignore Require force adding to bin 2023-08-27 09:56:43 -04:00
README.md Update clone URL 2023-08-27 10:04:53 -04:00
install.sh Replace docker with orbstack 2023-08-27 09:54:52 -04:00

README.md

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"