Skip to content

Instantly share code, notes, and snippets.

View usmarcv's full-sized avatar

Márcus Vinícius usmarcv

  • University of São Paulo
  • São Carlos - São Paulo, Brazil
  • LinkedIn in/marcusvlc
View GitHub Profile
@usmarcv
usmarcv / skeleton.cpp
Last active July 8, 2022 12:17
My skeleton template using cpp
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define INF 0x3f3f3f3f
#define _ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long long ll;
@usmarcv
usmarcv / .vimrc
Created May 25, 2022 17:57
My configurations of vimrc
:autocmd BufNewFile *.cpp 0r ~/.vim/templates/skeleton.cpp
set ts=2
set nu
set number relativenumber
set showbreak=~
set hidden
set shiftwidth=2
set smartindent