veerendra2 / dotfiles

dotfiles :large_blue_circle:

Home Page:https://veerendra2.github.io/dotfiles/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotfiles

With Kubernetes prompt 😎

Install

  • Install dependency packages

    # Linux
    $ apt-get update
    $ apt-get install \
        curl feh xclip \
        ngrep pv openssl -y
    $ curl -qo /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 > /dev/null 2>&1
    $ chmod +x /usr/local/bin/yq
    
    # MacOS
    # install homebrew
    $ brew install yq ngrep openssl pv curl
  • Install dotfiles

    $ curl https://raw.githubusercontent.com/veerendra2/dotfiles/master/install | bash
    $ bash

Configure bash(Homebrew) in iTerm for MacOS

More info https://stackoverflow.com/questions/23059662

This configuration is need when latest bash installed from homebrew package manager.

  • Change default shell to bash

    $ bash -c 'echo $(brew --prefix)/bin/bash | sudo tee -a /etc/shells'
    $ chsh -s $(brew --prefix)/bin/bash
  • Update bash location command in iTerm profiles like below.

    NOTE: You can the get bash binary location by running echo $(brew --prefix)/bin/bash. For apple silicon it should be /opt/homebrew/bin/bash and for intel /usr/local/bin/bash

About

dotfiles :large_blue_circle:

https://veerendra2.github.io/dotfiles/

License:Apache License 2.0


Languages

Language:Shell 89.4%Language:Vim Script 10.6%