Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atomaka/dotfiles
https://github.com/atomaka/dotfiles
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/atomaka/dotfiles
- Owner: atomaka
- Created: 2012-04-05T09:35:26.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T01:49:47.000Z (16 days ago)
- Last Synced: 2024-10-31T02:28:20.900Z (16 days ago)
- Language: Shell
- Homepage:
- Size: 393 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"
```