Skip to content

Instantly share code, notes, and snippets.

View Code-Crash's full-sized avatar
🏁
{building [.......]}

Pravin Tiwari Code-Crash

🏁
{building [.......]}
  • Pune
View GitHub Profile
@Code-Crash
Code-Crash / gist:930e0584167034cef662b87c79cc3ad4
Created April 10, 2019 06:43 — forked from anthonyray/gist:398fde676a7704c03d6624155ba0011e
Set up OhMyZsh on Amazon EC2 instance running Ubuntu Server 14.04
  1. Connect to your EC2 instance
  2. Install zsh : sudo apt-get update && sudo apt-get install zsh
  3. Edit your passwd configuration file to tell which shell to use for user ubuntu : sudo vim /etc/passwd
  4. Look for ubuntu user, and replace bin/bash by bin/zsh
  5. Install OhMyZsh : sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  6. Disconnect from your instance and reconnect it.
@Code-Crash
Code-Crash / .vimrc
Created March 27, 2018 16:53 — forked from shkesar/.vimrc
set expandtab
set shiftwidth=2
set softtabstop=2
syntax on
call plug#begin()
Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf.vim'