Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 address

Explanation 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
```