This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
++a * ++a = (a+2)^2 | |
++a * a++ = (a+1)(a+2) | |
a++ * ++a = (a)(a+2) | |
a++ * a++ = (a)(a+1) | |
# credited karthikraja |
OlderNewer