Skip to content

Instantly share code, notes, and snippets.

View mnuddindev's full-sized avatar
📖
Reading GoLang

Mohammad Nazim Uddin mnuddindev

📖
Reading GoLang
View GitHub Profile
pip install powerline-shell
bash -c "$(curl -fsSL https://git.io/oh-my-termux)"
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
@mnuddindev
mnuddindev / .vimrc
Last active November 9, 2022 13:10
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'
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'
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'
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:
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
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
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'
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"