https://github.com/anmonteiro/dotfiles
https://github.com/anmonteiro/dotfiles
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anmonteiro/dotfiles
- Owner: anmonteiro
- Created: 2015-11-19T19:40:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-08-10T18:04:13.000Z (5 months ago)
- Last Synced: 2025-10-08T18:43:23.909Z (3 months ago)
- Language: Vim Script
- Size: 1.08 MB
- Stars: 25
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## Symlinking to dotfiles
From [Git, dotfiles & Hardlinks](https://codingkilledthecat.wordpress.com/2012/08/08/git-dotfiles-and-hardlinks/):
symlinking files inside the repository out of it, into your home directory:
```shell
ln -sfn $PWD/nvim ~/.config/nvim
```
```shell
~ $ rm ~/.emacs.d
~ $ cd ~
~ $ ln -s dotfiles/.emacs.d .
```