Skip to content

Instantly share code, notes, and snippets.

View navinthenapster's full-sized avatar
💭
I may be slow to respond.

Navin Infant Raj navinthenapster

💭
I may be slow to respond.
View GitHub Profile
@navinthenapster
navinthenapster / .vimrc
Created October 7, 2021 02:08
VIM personalized settings. include in ~/.vimrc or ~/.gvimrc
color peachpuff
set guifont=Monospace\ 12
#for backspace
set backspace=indent,eol,start
#for shortcut ctrl+c and ctrl+v and other
source $VIMRUNTIME/mswin.vim
behave mswin
@navinthenapster
navinthenapster / pre_in.txt
Created October 11, 2021 17:13
pre_increment and post increment operation
++a * ++a = (a+2)^2
++a * a++ = (a+1)(a+2)
a++ * ++a = (a)(a+2)
a++ * a++ = (a)(a+1)
# credited karthikraja