Go to file
Andrew Tomaka b344292bb8
Remove orbstack
2024-04-10 21:43:02 -04:00
alacritty/.config/alacritty Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
bin/bin Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
git rtx is now mise 2024-02-15 16:36:40 -05:00
nvim/.config/nvim Bump vim plugins 2023-11-23 10:49:47 -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 rtx is now mise 2024-02-15 16:36:40 -05:00
.gitignore Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
README.md Update clone URL 2023-08-27 10:04:53 -04:00
install-todo.md Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
install.sh Pull remaining to install functions 2023-11-11 11:55:50 -05:00
packages-darwin-brew-cask-personal.txt Additional packages 2024-02-14 21:01:59 -05:00
packages-darwin-brew-cask-work.txt More work 2023-12-01 09:48:28 -05:00
packages-darwin-brew-cask.txt Additional packages 2024-02-14 21:01:59 -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 iperf3 2024-03-26 03:58:03 -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"