Skip to content

Commit 6e18a7b

Browse files
committed
Initial commit
1 parent 8aaf130 commit 6e18a7b

File tree

3 files changed

+4440
-0
lines changed

3 files changed

+4440
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
rime-out
2+
*.pyc
3+
Icon*
4+
*.swp
5+
.DS_Store
6+
Thumbs.db
7+
*~
8+
*.out
9+
target

PROJECT

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- coding: utf-8; mode: python -*-
2+
3+
## You can load plugins here.
4+
use_plugin('rime_plus')
5+
use_plugin('judge_system.atcoder')
6+
#use_plugin('judge_system.aoj')
7+
#use_plugin('wikify')
8+
#use_plugin('wikify_full')
9+
10+
project(library_dir='common', required_rime_plus_version='1.0.0')
11+
12+
#wikify_config(
13+
# url="http://example.com/pukiwiki/",
14+
# page="***",
15+
# encoding="utf-8",
16+
# auth_realm="***",
17+
# auth_username="***",
18+
# auth_password="***")
19+
20+
atcoder_config(
21+
upload_script='***',
22+
contest_url='https://***.contest.atcoder.jp/',
23+
username='***', password='***',
24+
lang_ids={'c': 13, 'cxx': 10, 'java': 3}
25+
)

0 commit comments

Comments
 (0)