├── .config ├── Code │ └── User │ │ ├── keybindings.json │ │ └── settings.json ├── Mendeley Ltd. │ └── Mendeley Desktop.conf ├── Thunar │ └── uca.xml ├── autorandr │ ├── seated │ │ ├── config │ │ └── setup │ ├── standing-only │ │ ├── config │ │ └── setup │ └── standing │ │ ├── config │ │ └── setup ├── gummi │ ├── gummi.cfg │ ├── snippets.cfg │ └── welcome.tex ├── ranger │ ├── bookmarks │ ├── commands.py │ ├── commands_full.py │ ├── history │ ├── rc.conf │ ├── rifle.conf │ ├── scope.sh │ └── tagged ├── redshift.conf ├── sublime-text-3 │ └── Packages │ │ └── User │ │ ├── AutoDocstring.sublime-settings │ │ ├── Default (Linux).sublime-keymap │ │ ├── Default (Linux).sublime-mousemap │ │ ├── Package Control.sublime-settings │ │ ├── Preferences.sublime-settings │ │ ├── docker.sublime-snippet │ │ ├── ipython.sublime-snippet │ │ └── trailing_spaces.sublime-settings └── terminator │ └── config ├── .dotfiles ├── .bash_aliases ├── .bash_functions ├── .bashrc ├── .dircolors ├── .docker_aliases ├── .docker_functions ├── .dotfiles_setup.sh ├── .git-completion.bash ├── .gitconfig ├── .gitignore ├── .markdownlintrc ├── .nanorc ├── .profile ├── .screenrc ├── .travis.conf └── .vimrc ├── .github └── FUNDING.yml ├── .gitignore ├── .ipython └── profile_default │ ├── ipython_config.py │ ├── ipython_kernel_config.py │ ├── log │ └── engines.json │ ├── pid │ └── ipcontroller.pid │ └── startup │ ├── README │ └── startup_file.py ├── .local └── bin │ ├── TimeToHome.py │ ├── diff-so-fancy │ └── generate_wordcloud.py ├── .profile ├── .travis.yml ├── .vscode └── extensions │ └── ms-python.python-2020.2.63072 │ └── snippets │ └── python.json ├── LICENSE ├── My-Git-Repos.txt ├── Pictures ├── glasses-and-computer-screen.jpg └── highway-light-trails-at-night.jpg ├── README.md └── workspace.code-workspace /.config/Code/User/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/Code/User/keybindings.json -------------------------------------------------------------------------------- /.config/Code/User/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/Code/User/settings.json -------------------------------------------------------------------------------- /.config/Mendeley Ltd./Mendeley Desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/Mendeley Ltd./Mendeley Desktop.conf -------------------------------------------------------------------------------- /.config/Thunar/uca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/Thunar/uca.xml -------------------------------------------------------------------------------- /.config/autorandr/seated/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/seated/config -------------------------------------------------------------------------------- /.config/autorandr/seated/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/seated/setup -------------------------------------------------------------------------------- /.config/autorandr/standing-only/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/standing-only/config -------------------------------------------------------------------------------- /.config/autorandr/standing-only/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/standing-only/setup -------------------------------------------------------------------------------- /.config/autorandr/standing/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/standing/config -------------------------------------------------------------------------------- /.config/autorandr/standing/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/autorandr/standing/setup -------------------------------------------------------------------------------- /.config/gummi/gummi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/gummi/gummi.cfg -------------------------------------------------------------------------------- /.config/gummi/snippets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/gummi/snippets.cfg -------------------------------------------------------------------------------- /.config/gummi/welcome.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/gummi/welcome.tex -------------------------------------------------------------------------------- /.config/ranger/bookmarks: -------------------------------------------------------------------------------- 1 | ':/home/mmphego 2 | -------------------------------------------------------------------------------- /.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/commands.py -------------------------------------------------------------------------------- /.config/ranger/commands_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/commands_full.py -------------------------------------------------------------------------------- /.config/ranger/history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/history -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/ranger/scope.sh -------------------------------------------------------------------------------- /.config/ranger/tagged: -------------------------------------------------------------------------------- 1 | /home/mmphego/Android 2 | -------------------------------------------------------------------------------- /.config/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/redshift.conf -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/AutoDocstring.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/AutoDocstring.sublime-settings -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/Default (Linux).sublime-mousemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/Default (Linux).sublime-mousemap -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/Package Control.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/Package Control.sublime-settings -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/Preferences.sublime-settings -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/docker.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/docker.sublime-snippet -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/ipython.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/ipython.sublime-snippet -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/trailing_spaces.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/sublime-text-3/Packages/User/trailing_spaces.sublime-settings -------------------------------------------------------------------------------- /.config/terminator/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.config/terminator/config -------------------------------------------------------------------------------- /.dotfiles/.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.bash_aliases -------------------------------------------------------------------------------- /.dotfiles/.bash_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.bash_functions -------------------------------------------------------------------------------- /.dotfiles/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.bashrc -------------------------------------------------------------------------------- /.dotfiles/.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.dircolors -------------------------------------------------------------------------------- /.dotfiles/.docker_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.docker_aliases -------------------------------------------------------------------------------- /.dotfiles/.docker_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.docker_functions -------------------------------------------------------------------------------- /.dotfiles/.dotfiles_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.dotfiles_setup.sh -------------------------------------------------------------------------------- /.dotfiles/.git-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.git-completion.bash -------------------------------------------------------------------------------- /.dotfiles/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.gitconfig -------------------------------------------------------------------------------- /.dotfiles/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /.dotfiles/.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.markdownlintrc -------------------------------------------------------------------------------- /.dotfiles/.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.nanorc -------------------------------------------------------------------------------- /.dotfiles/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.profile -------------------------------------------------------------------------------- /.dotfiles/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.screenrc -------------------------------------------------------------------------------- /.dotfiles/.travis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.travis.conf -------------------------------------------------------------------------------- /.dotfiles/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.dotfiles/.vimrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /.ipython/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.ipython/profile_default/ipython_config.py -------------------------------------------------------------------------------- /.ipython/profile_default/ipython_kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.ipython/profile_default/ipython_kernel_config.py -------------------------------------------------------------------------------- /.ipython/profile_default/log/engines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.ipython/profile_default/log/engines.json -------------------------------------------------------------------------------- /.ipython/profile_default/pid/ipcontroller.pid: -------------------------------------------------------------------------------- 1 | 3797 2 | -------------------------------------------------------------------------------- /.ipython/profile_default/startup/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.ipython/profile_default/startup/README -------------------------------------------------------------------------------- /.ipython/profile_default/startup/startup_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.ipython/profile_default/startup/startup_file.py -------------------------------------------------------------------------------- /.local/bin/TimeToHome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.local/bin/TimeToHome.py -------------------------------------------------------------------------------- /.local/bin/diff-so-fancy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.local/bin/diff-so-fancy -------------------------------------------------------------------------------- /.local/bin/generate_wordcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.local/bin/generate_wordcloud.py -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- 1 | /home/mmphego/.dotfiles/.profile -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions/ms-python.python-2020.2.63072/snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/.vscode/extensions/ms-python.python-2020.2.63072/snippets/python.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/LICENSE -------------------------------------------------------------------------------- /My-Git-Repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/My-Git-Repos.txt -------------------------------------------------------------------------------- /Pictures/glasses-and-computer-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/Pictures/glasses-and-computer-screen.jpg -------------------------------------------------------------------------------- /Pictures/highway-light-trails-at-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/Pictures/highway-light-trails-at-night.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/README.md -------------------------------------------------------------------------------- /workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmphego/dot-files/HEAD/workspace.code-workspace --------------------------------------------------------------------------------