No description
alacritty/.config/alacritty | ||
bin/bin | ||
git | ||
nvim/.config/nvim | ||
ruby | ||
tmux/.config/tmux | ||
zsh | ||
.gitignore | ||
install-todo.md | ||
install.sh | ||
packages-darwin-brew-cask-personal.txt | ||
packages-darwin-brew-cask-work.txt | ||
packages-darwin-brew-cask.txt | ||
packages-darwin-brew.txt | ||
packages-linux-apt.txt | ||
packages-shared-brew.txt | ||
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"