This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inoremap jj <Esc> | |
inoremap wq <Esc>:wq<CR> | |
map wq <Esc>:wq<CR> | |
map ww <Esc>:w<CR> | |
map qq <Esc>:q!<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
read -p "Enter File Id: " fileid | |
read -e -p "Enter File Dir: " "path_to_download_dir" dir #replce with your download dir path ~/Downloads | |
cd ~/$dir | |
echo "File will be downloaded in dir: ~/{$dir}" | |
curl -c ./$fileid -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "=============================================================" | |
echo "1. Update and install zsh, curl, git, tmux" | |
sudo apt update | |
sudo apt -y install zsh curl git tmux | |
echo "=============================================================" | |
echo "2. Install vim8 and vimrc" | |
sudo apt-get -y install software-properties-common | |
sudo add-apt-repository -y ppa:jonathonf/vim | |
sudo apt-get -y update |