https://github.com/atomaka/dotfiles
https://github.com/atomaka/dotfiles
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/atomaka/dotfiles
- Owner: atomaka
- Created: 2012-04-05T09:35:26.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T20:28:30.000Z (over 1 year ago)
- Last Synced: 2025-02-20T21:29:41.330Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 438 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Personal dotfiles managed via GNU stow.
## Installation
```bash
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"
```