-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.0: dotfiles with portable installer for new systems
See changelog and readme for more info.
- Loading branch information
Showing
20 changed files
with
1,549 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
v1.0.0 | ||
====== | ||
|
||
Added | ||
----- | ||
|
||
- Dotfiles for: | ||
- Emacs | ||
- Git | ||
- Mercurial `hg` | ||
- Wget | ||
- Oh My ZSH! with aliases and theme | ||
- Screen | ||
- Midnight Commander `mc` | ||
- htop | ||
- Scripts for: | ||
- installing the dotfiles repository along with the packages the dotfiles | ||
are meant for | ||
- updating the whole system | ||
- Other: | ||
- list of mostly useful packages | ||
- license, readme and this changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
Matjaž Dotfiles Repository | ||
========================== | ||
|
||
_a.k.a. yet another dotfiles repo but now with powerful installer scripts_ | ||
|
||
Features | ||
-------- | ||
|
||
### Configuration files | ||
|
||
- [`zshrc`](zshrc): general | ||
[_Oh My ZSH!_](https://github.com/robbyrussell/oh-my-zsh) settings | ||
- [`zsh_path`](zsh_path): `$PATH` variable setting and `export` settings, like | ||
default text editors and so on | ||
- [`zsh_aliases`](zsh_aliases): custom aliases and functions for the zsh | ||
- [`zsh_fino_custom.zsh-theme`](zsh_fino_custom.zsh-theme): a customized `fino` | ||
theme for _Oh My ZSH!_ | ||
- [`gitconfig`](gitconfig): general Git settings | ||
- [`gitignore_global`](gitignore_global): a list of files Git should ignore in | ||
any repository | ||
- [`emacs_init.el`](emacs_init.el): Emacs configuration that also installs some | ||
ELPA packages, if not already installed, to completely clone an existing | ||
configuration | ||
- [`hgrc`](hgrc): general Mercurial settings | ||
- [`htoprc`](htoprc): looks and columns for `htop` process viewer | ||
- [`screenrc`](screenrc): basic settings of `screen` terminal multiplexer | ||
- [`wgetrc`](wgetrc): global configurations of the `wget` command line | ||
downloader | ||
|
||
|
||
### Installer/automation scripts | ||
|
||
Those scripts are meant to be portable, so they react differently based on the | ||
operative system. Currently are implemented for OS X and Linux Debian/Ubuntu. | ||
|
||
- [`matjaz_dotfiles_installer.sh`](matjaz_dotfiles_installer.sh) installs _Oh My | ||
ZSH!_, if not already installed, clones this dotfiles repository and applies | ||
those dotfiles to the user, by creating symlinks to them from the home | ||
directory. | ||
- [`new_system_packages_installer.sh`](new_system_packages_installer.sh) which | ||
installs some packages which the Matjaž's dotfiles are for. It calls the | ||
system's package manager. Currently only for `brew` + `brew cask` or | ||
`apt-get`. | ||
- [`full_system_updater.sh`](full_system_updater.sh) just like | ||
`new_system_packages_installs.sh` detects the operative system and updates | ||
all the packages of its package managers. Currently only for `brew` + `brew | ||
cask` or `apt-get`, `pip3` and `gem`. | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
All you need to do is download and run the | ||
[`matjaz_dotfiles_installer.sh`](matjaz_dotfiles_installer.sh) which should | ||
handle all the rest. It installs the dotfiles repository in | ||
`~/Development/Dotfiles`, the necessary packages, HomeBrew and _Oh My ZSH!_. | ||
|
||
Run the following command to download the installer and run it: | ||
|
||
```bash | ||
bash -c "$(wget https://raw.github.com/TheMatjaz/dotfiles/master/matjaz_dotfiles_installer.sh -O -)" | ||
``` | ||
|
||
After that I suggest running the | ||
[`full_system_updater.sh`](full_system_updater.sh), which will be | ||
located in the just downloaded dotfiles repository (default in `~/Development/Dotfiles`), to update and upgrade everything. It ask for root password just for `gem` updates. | ||
|
||
```bash | ||
bash full_system_updater.sh | ||
``` | ||
|
||
|
||
License | ||
------- | ||
|
||
This dotfiles repository is released under the | ||
[BSD 3-clause license](LICENSE.md). | ||
|
||
|
||
Thanks to | ||
--------- | ||
|
||
Those repositories were used as a huge inspiration, some functions and | ||
aliases were also taken from them. All of those repositories are subject to the | ||
[MIT license](https://opensource.org/licenses/MIT), released by their respective | ||
owners. | ||
|
||
- [Mathias Bynens's dotfiles](https://github.com/mathiasbynens/dotfiles) | ||
- [Holman's dotfiles](https://github.com/holman/dotfiles) | ||
- [Joined's dotfiles](https://github.com/joined/dotfiles) | ||
|
||
Some really useful documentation about the dotfiles repositories may be found | ||
here: | ||
|
||
- [Getting started with dotfiles](https://medium.com/@webprolific/getting-started-with-dotfiles-43c3602fd789), | ||
great for beginners | ||
- [Dotfiles are meant to be forked](http://zachholman.com/2010/08/dotfiles-are-meant-to-be-forked/) | ||
by Holman | ||
- [Using Git and GitHub to manage your dotfiles](http://blog.smalleycreative.com/tutorials/using-git-and-github-to-manage-your-dotfiles/) |
Oops, something went wrong.