dot-files
                                
                                 dot-files copied to clipboard
                                
                                    dot-files copied to clipboard
                            
                            
                            
                        Backup of my dotfiles.
My Dotfiles
Your dotfiles are how you personalize your system. These are mine. I was a little tired of having long alias files and everything strewn about(which is extremely common on other dotfiles projects, too). That led to this project being much more topic-centric. I realized I could split a lot of things up into the main areas I used, so I structured the project accordingly.
Installation
Warning: If you want to give these dotfiles a try, you should first fork this repository, review the code, and remove things you don’t want or need. Don’t blindly use my settings unless you know what that entails.
Use at your own risk!
There are various ways you can install the dotfiles either fork or clone or download repo.
- Option #1
cd $HOME
git init
git remote add -f [email protected]:[USERNAME/REPO_NAME].git
git pull -f
git checkout -f master
bash .dotfiles/.dotfiles_setup.sh install
- Option #2
wget https://github.com/mmphego/dot-files/archive/master.zip
unzip master.zip
rsync -uar --delete-after dot-files-master/{.,}* $HOME
cd $HOME
bash .dotfiles/.dotfiles_setup.sh install
- Option #3
cd $HOME
git clone --depth 1 https://github.com/mmphego/dot-files
rsync -uar --delete-after dot-files/{.,}* $HOME
bash .dotfiles/.dotfiles_setup.sh install
The command (bash .dotfiles/.dotfiles_setup.sh install) will create symlinks for config files in your home directory.
After installation is complete, test if everything was installed successfully.
bash .dotfiles/.dotfiles_setup.sh test
To uninstall run;
bash .dotfiles/.dotfiles_setup.sh uninstall
What's in the dotfiles
Configurations
IPython configuration:
- Adds IPython startup file
git configuration:
- Adds git typos
- Adds a cialias that checks the continuous integration status.
- Adds a pushdalias to push upstream and an option of creating a pull-request.
- Adds a create-pralias to push to remote and create a pull request.
- Adds a commit-amendalias amend to previous commit with HEAD commit message.
- Adds a commit-amend-pushalias amend to previous commit with HEAD commit message and push to remote.
VSCode configuration:
- Added plugins
- Added few keybindings
- Updated settings
Sublime Text configuration:
- Added IPython.embed() snippet
- Added few plugins
- Few settings
- Added static wallpaper
- Moved the panel to the bottom of the screen, increased pixels to 48
- Few extras
Shell aliases and scripts
- 
.bash_aliaseswhich contains most of my aliases.
- 
.bash_functionswhich contains function, examples:- sciget: Download research papers easily with sci-hub.tw
- getbibtex: Easily download BibTex from IEEEExplore.
- cd: Redefined a cd- builtincommand and added- ls -thor
- etc
 
- 
.bashrcwhich contains ShellOptions, source's, and some configurations.
- 
.docker_aliaseswhich contains my runnable Docker containers such as:- bat: supports syntax highlighting for a large number of programming and markup languages
- tldr: A collection of simplified and community-driven man pages.
- mardownlinter: docker based markdown linter
 
- 
And few extras 
Feedback
Feel free to fork it or send me PR to improve it.