Go to file
Andrew Tomaka fd025a01ac
More work
2023-12-01 09:48:28 -05: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 Gitignore rtx files 2023-11-18 23:07:26 -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 Remove replaced version managers 2023-11-18 23:09:02 -05: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-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 Add mqtt-explorer 2023-11-23 09:53:33 -05:00
packages-darwin-brew-cask-work.txt More work 2023-12-01 09:48:28 -05:00
packages-darwin-brew-cask.txt Split personal and work brew casks 2023-11-11 11:55:25 -05:00
packages-darwin-brew.txt Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
packages-linux-apt.txt Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
packages-shared-brew.txt Remove missed nodenv 2023-11-21 10:29:37 -05: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"