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
/* | |
* Created by Abas Farah 2021 | |
* Purpose: | |
* For competitive programmers who want to make their competitions more efficent. | |
* This is also built in as a snippit to my Vimrc, For more information checkout: | |
* github.com/abasnfarah/dotfiles/vim/snippits/cpSnippit.cpp | |
* | |
*/ | |
#include "/Users/abasfarah/workspaces/competativeProgramming/stdc++.h" |
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
set nocompatible " be iMproved, required | |
filetype off " required | |
" PLUGINS: | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC |