aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc1
-rw-r--r--.boilerplates/comp/file.cpp31
-rwxr-xr-x.boilerplates/comp/run6
-rw-r--r--.boilerplates/comp/test.txt0
-rw-r--r--.config/nvim/init.vim1
5 files changed, 39 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 066ef77..813d92b 100644
--- a/.bashrc
+++ b/.bashrc
@@ -29,6 +29,7 @@ alias gc='git commit'
alias ga='git add'
alias gp='nohup git push --quiet &> /dev/null &'
alias gd='git diff'
+alias gr='git reset'
# Settings
export PS1='[\W] '
diff --git a/.boilerplates/comp/file.cpp b/.boilerplates/comp/file.cpp
new file mode 100644
index 0000000..ffdf9be
--- /dev/null
+++ b/.boilerplates/comp/file.cpp
@@ -0,0 +1,31 @@
+#include <iostream>
+#include <cmath>
+#include <bits/stdc++.h>
+using namespace std;
+
+#define IOS \
+ ios::sync_with_stdio(0); \
+ cin.tie(0); \
+ cout.tie(0);
+#define int long long
+
+int32_t main()
+{
+ IOS int T;
+ cin >> T;
+ for (int t = 0; t < T; t++) {
+ int n, cnt = 0;
+ cin >> n;
+
+ int a[n];
+ for (int i = 0; i < n; i++) {
+ cin >> a[i];
+ }
+
+ //
+
+ cout << "Case #" << t + 1 << ": " << cnt << endl;
+ }
+
+ return 0;
+}
diff --git a/.boilerplates/comp/run b/.boilerplates/comp/run
new file mode 100755
index 0000000..dae3494
--- /dev/null
+++ b/.boilerplates/comp/run
@@ -0,0 +1,6 @@
+#!/usr/bin/env sh
+
+g++ file.cpp || exit 1
+./a.out < test.txt
+
+xclip -selection c < file.cpp
diff --git a/.boilerplates/comp/test.txt b/.boilerplates/comp/test.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.boilerplates/comp/test.txt
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index b4d657c..12cb075 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -206,6 +206,7 @@ augroup VimDiff
augroup END
let g:ale_pattern_options = {
\ '\.c$': {'ale_linters': ['clangtidy'], 'ale_fixers': ['clang-format']},
+\ '\.cpp$': {'ale_linters': ['clangtidy'], 'ale_fixers': ['clang-format']},
\ '\.h$': {'ale_linters': ['clangtidy'], 'ale_fixers': ['clang-format']},
\ '\.asm$': {'ale_linters': ['gcc'], 'ale_fixers': ['trim_whitespace']},
\ '\.clj$': {'ale_linters': ['joker'], 'ale_fixers': []},