https://github.com/mblode/dotfiles
https://github.com/mblode/dotfiles
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mblode/dotfiles
- Owner: mblode
- Created: 2021-10-31T23:04:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T20:53:42.000Z (over 1 year ago)
- Last Synced: 2025-02-28T00:15:41.756Z (over 1 year ago)
- Language: Shell
- Size: 52.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mblode's dotfiles
## What's inside
- Git
- Homebrew
- iTerm 2
- Hyper Key for Karabiner Elements
- Mac OS defaults
- SSH
- Terminal
- Valet
- Vim
- VS Code
- Yarn
- zsh
### Install dotfiles
Then, run these steps:
```sh
$ git clone https://github.com/mblode/dotfiles.git ~/dotfiles
$ cd ~/dotfiles
$ ./script/bootstrap
$ zsh # or just close and open your terminal again.
```
### macOS defaults
You use it by running:
```console
$DOTFILES/macos/set-defaults.sh
```
And logging out and in again.
### iTerm install
In iterm Preferences > General > Load preferences from a custom folder or URL and set it to ~/dotfiles/iterm
### Vim Plug
Open vim, type :PlugInstall to get the latest of all the vim plugins
### Karabiner Hyper-Key
[Hyper Key](http://brettterpstra.com/2017/06/15/a-hyper-key-with-karabiner-elements-full-instructions/)
### Zotero and Ullyses
[Makrdown to word](http://raphaelkabo.com/blog/posts/markdown-to-word/)
### Create a new SSH
[Generate a new SSH](https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)
### Set ZSH
`chsh -s /bin/zsh`
### MySQL
```
mysql -uroot
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
ALTER USER 'yourusername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'youpassword';
```