There are tons of useful things in here:
- The usefulness of βOh My ZSH!β is already builtβin.
- πβοΈ Spaceships as a prompt.
- π Fish-like autosuggestions.
- Syntax highlighting of commands while they are typed.
- Automatically closing and deleting of quotes and brackets when you type them.
- Browser-like substring search for history.
- zgen for dependency management.
- Useful aliases.
- Git config, global
.gitignore
file and aliases. - Dotfiles synchronization (
sync.py
) with backup. - Restoring old dotfiles (
restore.py
) from backup. - A lot of useful bins.
update
script for updating dotfiles, npm, brew, gems, etc.
Missing feature? π΄ Fork this repo and make it better!
Dotfiles are installed by running one of the following commands in your terminal, just copy one of the following commands and execute in the terminal:
Tell Git who you are using these commands:
git config -f ~/.gitlocal user.email "[email protected]"
git config -f ~/.gitlocal user.name "Name Lastname"
Clone dotfiles repo:
# Clone dotfiles repo
git clone https://github.com/denysdovhan/dotfiles.git $HOME/.dotfiles
# Go to the dotfiles directory
cd $HOME/.dotfiles
# Install dotfiles
./install
Use single command to get latest updates:
update
This command will update dotfiles, their dependencies, brew
or apt-get
packages, global npm
dependencies, gem
s, apm
plugins.
Note: You may put your custom settings into
~/.zshlocal
.
I suggest you to organize project folder as follows:
~/Projects
βββ Forks # for GitHub fork
βββ Job # for job projects
βββ Playground # for short-term experiments
βββ Repos # for long-term projects
Aliases are gonna make your work fast and enjoyable. See code in $DOTFILES/lib/aliases.zsh
. Here is what's included:
- Aliases from Oh-My-Zsh. See Oh-My-Zsh Cheatsheet for more.
- Easier navigation
..
βcd ..
...
βcd ../..
....
βcd ../../..
.....
βcd ../../../..
~
βcd ~
-
βcd -
- Folders shortcuts
dl
βcd ~/Downloads
dt
βcd ~/Desktop
pj
βcd ~/Projects
pjr
βcd ~/Projects/_Repos
pjf
βcd ~/Projects/_Forks
pl
βcd ~/Projects/_Playground/
- Commands Shortcuts
e
β$EDITOR
+x
βchmod +x
x+
βchmod +x
ll
βls -alF
la
βls -A
l
βls -CF
- Open
open <FILE>
β open file from terminal.o <FILE>
β open file from terminal.oo
β open current folder.
- Misc
update
β get updates (Runs$DOTFILES/scripts/update.zsh
).dotfiles
β jump quickly into dotfiles folder.myip
β my local IP address.password
β generate random password, copies it into clipboard and outputs it to terminal.path
β print $PATH in readable view.getpage
β download web page with all assets.get
β download file with original filename.
These OMZ plugins are included:
git
β git aliases and functions.npm
β provides completion as well as adding many useful aliases.yarn
β the same as fornpm
, but foryarn
nvm
β auto-sourcingnvm
.sudo
β[Esc] [Esc]
to re-run previous command with sudo.ssh-agent
β automatically starts ssh-agent to set up and load whichever credentials you want for ssh connections.gpg-agent
β enablesgpg-agent
if it is not running.- More are listed in
.zshrc
(it's hard to keep the list updated).
Dotfiles also include some functions that will make your life easier. See code in bin/
.
emptytrash
β empty the Trash on all mounted volumes and the main HDD.git-cleanup
β removes old Git branches and does other cleanup.git-fork
β add remote upsteam.git-upstream
β sync branch with upstream.gz
β get gzipped file sizen
β runs given command using binary innode_modules/.bin
of the current project.nyan
β print nyan cat.server
β start an HTTP server from a directory.
Note: Add your git user data and custom settings to
~/.gitlocal
.
- UI color is
auto
. - Diff colors are:
white bold
for meta information;cyan bold
for frag;red bold
for old lines;green bold
for new lines.
- Default editor is Vim instead of Vi.
push.default
set ascurrent
.- Automatic replacement
git://github.com/
,gh:
,github:
addresses as[email protected]:
for GitHub. - Automatic replacement
git://gist.github.com/
,gst:
,gist:
addresses as[email protected]:
for Gists. - User custom settings gets from a
~/.gitlocal
file.
git a
βgit add
β patch mode for specified files.git ua
βgit reset HEAD
β unstage files.git b
βgit branch
β list, create, or delete branches.git c
βgit commit
β record changes to the repository.git co
βgit checkout
β checkout a branch or paths to the working tree.git ap
βgit add -p
β add file contents to the index.git ca
βgit commit -a
β commit with automatically stage files that have been modified and deleted.git cm
βgit commit -m
β commit with commit message.git cam
βgit commit -am
β add all files and commit with message.git s
βgit status -sb
β short status with current branch.git master
β go tomaster
branch and pull from remote.git develop
β go todevelop
branch and pull from remote.git git
β do not complain aboutgit git
.git l
β commits log with pretty single line format.git ll
β log with list of changed files for each commit.git ignore
β ignore files: append file to.gitignore
.git this
β initialize, add all files and commit.git amend
β amend last commit.git redo
β amend last commit with its original message.git undo
βreset --mixed HEAD^
β reset index changes, but not the working tree.git discard
βcheckout --
β discard changes.git contrib
β list of contributors and how many commits each person has.git today
β see how many lines of code you have written today.git stat
β how many lines of code in repo.git sync
β pull and push changes from/to remote.git-root
β go to repo root.git-cleanup [--force]
β removes old Git branches.git-fork <original-author>
β add remote upstream.git-upstream [branch]
β sync branch with upstream (as defaultmaster
).
Resources that I used to make these dotfiles better:
MIT Β© Denys Dovhan