Skip to content

Instantly share code, notes, and snippets.

View RahulDas-dev's full-sized avatar
🏠
Working from home

Rahul Das RahulDas-dev

🏠
Working from home
View GitHub Profile
@RahulDas-dev
RahulDas-dev / git-prompt.sh
Created February 26, 2021 19:28
git-promt.sh for git bash Terminal
PS1='\[\033]0;$TITLEPREFIX \007\]' # set window title
PS1="$PS1"'\n' # new line
PS1="$PS1"'\[\033[32m\]' # change to green
PS1="$PS1"'\h ' # user@host<space>
PS1="$PS1"'\[\033[35m\]' # change to purple
PS1="$PS1"'\[\033[33m\]' # change to brownish yellow
PS1="$PS1"'\w' # current working directory
if test -z "$WINELOADERNOEXEC"
then
COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}"
@RahulDas-dev
RahulDas-dev / init.vim
Last active March 5, 2021 11:04
My vimrc File With Plugins & Other Details
set nocompatible
filetype off
call plug#begin('~/.config/nvim/plugged')
" Declare the list of plugins.
Plug 'preservim/nerdtree'
Plug 'morhetz/gruvbox'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
Plug 'vim-airline/vim-airline'