Go to file
Andrew Tomaka 7751cb3a6d
Use tmux 3 style!
2023-07-27 23:53:23 -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 ( ͡° ͜ʖ ͡°) 2023-05-31 16:59:46 -04:00
.gitignore Take first steos toward nvim lua config 2022-09-21 22:02:30 -04:00
README.md Move ruby 3 script to note instead 2022-11-22 20:14:12 -05:00
install.sh Swap to ripgrep (slowly) 2023-02-05 20:18:42 -05:00

README.md

dotfiles

Personal dotfiles managed via GNU stow.

Installation

cd $HOME
git clone https://github.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"