This file contains hidden or 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
| pip install powerline-shell | |
| bash -c "$(curl -fsSL https://git.io/oh-my-termux)" |
This file contains hidden or 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
| Hey Guys!! | |
| This is a gist which teach you how to install VIM in your terminal or termux. | |
| [_]----[_] | |
| Just Follow my setp. | |
| pkg install vim | |
| vim installed successfully but it's not compatible to install PlugIn's. | |
| For that we need to install VundleVIM.Here we go |
This file contains hidden or 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
| set rtp+=~/.vim/bundle/Vundle.vim | |
| set shell=/bin/bash | |
| call vundle#begin() | |
| " let Vundle manage Vundle, required | |
| "Plugin 'pangloss/vim-javascript' | |
| "Plugin 'mxw/vim-jsx' | |
| Plugin 'mattn/gist-vim' | |
| Plugin 'mattn/webapi-vim' | |
| Plugin 'luochen1990/rainbow' | |
| "Plugin 'SirVer/ultisnips' |
This file contains hidden or 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
| import requests | |
| from bs4 import BeautifulSoup | |
| import os | |
| o = open ("others.txt", "a+") | |
| wp = open ("wp.txt", 'a+') | |
| wl = open ("list.txt").read().split("\n") | |
| class tcolor: | |
| yellow = '\33[33m' |
This file contains hidden or 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
| import requests as r | |
| import os | |
| scl = open("scannedList.txt", "a+") | |
| sl = open("list.txt").read().split("\n") | |
| class tcolor: | |
| yellow = '\33[33m' | |
| red = '\33[31m' | |
| green = '\33[32m' |
This file contains hidden or 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
| import requests as r | |
| from bs4 import BeautifulSoup | |
| ip = open("ip.txt", "a+") | |
| url = open("list.txt").read().split('\n') | |
| print("[+] Script Started") | |
| for i in url: |
This file contains hidden or 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
| mkdir $HOME/.termux/ ;echo "extra-keys = [['ESC','/','-','HOME','UP','END'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT']]" >> $HOME/.termux/termux.properties && termux-reload-settings && sleep 1 && logout |
This file contains hidden or 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
| pkg install golang | |
| pkg install neovim | |
| pkg install nodejs | |
| curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ | |
| https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
This file contains hidden or 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
| set rtp+=~/.vim | |
| set shell=/bin/bash | |
| call plug#begin("~/.vim/plugged") | |
| Plug 'fatih/vim-go' | |
| Plug 'fatih/molokai' | |
| Plug 'pR0Ps/molokai-dark' | |
| Plug 'mattn/emmet-vim' | |
| Plug 'tpope/vim-surround' | |
| Plug 'Yggdroot/indentLine' |
This file contains hidden or 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
| export ZSH="$HOME/.oh-my-zsh" | |
| ZSH_THEME="powerlevel9k/powerlevel9k" | |
| function sp { | |
| git branch > /dev/null 2>&1 || return 1 | |
| git config user.initials | |
| } | |
| POWERLEVEL9K_DIR_BACKGROUND='237' | |
| POWERLEVEL9K_CUSTOM_GIT_PAIR="echo \$(sp)" | |
| POWERLEVEL9K_CUSTOM_GIT_PAIR_BACKGROUND="clear" |
OlderNewer