Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emrys-hong/dotfiles
Dotfiles optimized for a deep learning researcher including vim and tmux
https://github.com/emrys-hong/dotfiles
deeplearning-environment dotfiles dotfiles-linux workflow
Last synced: about 2 months ago
JSON representation
Dotfiles optimized for a deep learning researcher including vim and tmux
- Host: GitHub
- URL: https://github.com/emrys-hong/dotfiles
- Owner: Emrys-Hong
- Created: 2019-04-26T08:52:12.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T08:30:07.000Z (2 months ago)
- Last Synced: 2024-10-29T09:50:48.438Z (2 months ago)
- Topics: deeplearning-environment, dotfiles, dotfiles-linux, workflow
- Language: Vim Script
- Homepage:
- Size: 371 KB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Dotfiles
All of configuration files([dotfiles](http://dotfiles.github.io/)) in this repo, using bash as shell script, and neovim as editor## To setup:
Setup is as simple as:
```
git clone https://github.com/Emrys-Hong/dotfiles ~/.dotfiles && cd ~/.dotfiles
./setup.sh
```
Specifically `setup.sh` will use softlinks to link the configuration files as hidden files to your home directory `~/` (alternatively, you can also choose to link the files yourself).Configuration files include :
Files
- "tmux.conf"
- "vimrc"
- "bashrc"
- "bash_profile"
- "bash_common"
- "zshrc"
- "profile"
- "inputrc"
- "gitignore_global"
- "gitattributes_global"
- "gitconfig"
- "condarc"Folders
- "ssh"
- "nvim"### Customize
- Change the `name` and `email` field inside `gitconfig`
- Change `ssh/config` for server addressExplanation for those configurations are included in [docs](docs/libraries.md)
## Tips
1. `type ` to check usage in bash
2. `git alias` to check git alias
3. `prefix+?` to check tmux shortcut## AutoUpdate
```
*/30 * * * * . $HOME/.profile; cd $HOME/.dotfiles/ && /usr/bin/git rev-parse --abbrev-ref HEAD | xargs /usr/bin/git pull --no-rebase origin
```