pacoguzman / dot-files

everyone has one...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#

All the programming things I use

# Install


Install homebrew

```sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

Install homebrew bundle to install all the brews and casks and load Brewfile

```sh
brew bundle
```

Install oh-my-zsh

```sh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```

Install [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md) plugin

```sh
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
```

Install [zsh-completions](https://github.com/zsh-users/zsh-completions#oh-my-zsh) plugin as used for some other plugins

```sh
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions
```

Add fpath check the install reference

Install the rest of the things

```sh
rake install
```

Install asdf plugins

```sh
cut -d' ' -f1 ~/.tool-versions | xargs -i asdf plugin add  {}
```

Install gitx from local formula (official one is missing) -> gitx/gitx#284

```sh
brew install --build-from-source ./formula/gitx-gitx.rb
```

Disable Spotlight to be executed once

```sh
sudo mdutil -i off
```

Kubernetes and Krew plugins

```sh
kubectl krew install stern ctx ns neat tree allctx
```

iTerm changes for glyphs and starship prompt

https://stackoverflow.com/questions/42271657/oh-my-zsh-showing-weird-character-on-terminal

Copyright (c) 2021 Paco Guzmán

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

everyone has one...


Languages

Language:Shell 91.5%Language:Ruby 8.5%