This file contains hidden or 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
#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; | |
This file contains hidden or 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
: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 |