Skip to content

Instantly share code, notes, and snippets.

View itsjzt's full-sized avatar

Saurabh Sharma itsjzt

View GitHub Profile
@itsjzt
itsjzt / .vimrc
Last active November 20, 2019 15:18
A small vim config focussed on great experience
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf.vim'
Plug 'NLKNguyen/papercolor-theme'
Plug 'mattn/emmet-vim'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-commentary'
" Plug 'ap/vim-buftabline'
Plug 'sheerun/vim-polyglot'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
@itsjzt
itsjzt / headings.md
Created November 16, 2017 14:49
to be used in `Beginners guide to markdown` blog.

Main Heading

Sub Heading

may be used as topic heading

sub-topic headings

another heading
smallest heading
@itsjzt
itsjzt / links.md
Last active November 16, 2017 14:57
for blog
@itsjzt
itsjzt / un-lists.md
Last active November 16, 2017 15:13
Un-ordered lists for blog.
  • first item

    some text about it.

  • Second item

some text also about it.

@itsjzt
itsjzt / or-list.md
Created November 16, 2017 15:16
ordered list
  1. Hello this about me.
  2. I'm a great blogger.
  3. I write on medium.

Make it simple not simpler. -- Albert Einstein

# ping on google server (bash script)
ping -t www.google.com

bold text denoting it's something important

another bold text

@itsjzt
itsjzt / Microsoft.PowerShell_profile.ps1
Last active March 30, 2018 08:04
my powershell config . 😙
# profile.ps1 for configuring Powershell's defaults
# created by @itsjzt
# dont forget to update the gist.
# import post-git for showing git status in terminal
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Agnoster
@itsjzt
itsjzt / install.ps1
Last active December 18, 2017 03:12
My install scripts 🐶💙
# needed for installing modules from internet
set-executionpolicy remotesigned -s cu
# install scoop )**(
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
# install some necessary apps
scoop install git
scoop install python
scoop install nodejs