Skip to content

Instantly share code, notes, and snippets.

View nitish6174's full-sized avatar

Nitish Garg nitish6174

View GitHub Profile
@nitish6174
nitish6174 / .vimrc
Last active April 4, 2022 12:11
Improve vim by installing vundle package manager, following plugins and using keyboard shortcuts
" Steps
" =====
" 1. Add below content to your .vimrc
" 2. Clone vundle : `git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim`
" 3. Run :PluginInstall in vim
" --------------------------------------------------
" Vundle package manager settings
" --------------------------------------------------
@nitish6174
nitish6174 / .gitconfig
Last active April 11, 2022 05:13
Git aliases
[alias]
s = status
a = add
d = diff
dc = diff --cached
dd = difftool --tool=vimdiff -y
c = commit
ps = push
pl = pull
co = checkout