-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondres.toml
91 lines (85 loc) · 2.68 KB
/
condres.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
inherits = "base.toml"
[gdm]
# [pacman]
# keyrings = ['archlinux', 'condres']
[zsh]
[zsh.zshrc]
condres = [
'''source /usr/share/zsh/site-contrib/powerline.zsh''',
'''zstyle ':completion:*' menu select''',
# '''case $TERM in''',
# " xterm*) ",
# " bindkey \"^[[H\" beginning-of-line # Home (xterm)",
# ''' bindkey '^[[F' end-of-line # End (xterm)''',
# ''' bindkey '\e[3~' delete-char # Delete''',
# ''' bindkey '^[[5~' history-beginning-search-backward # Page Up''',
# ''' bindkey '^[[6~' history-beginning-search-forward # Page Down''',
# ''' bindkey '^[[2~' overwrite-mode # Insert''',
# ''';;''',
# '''esac''',
]
[pacman]
[pacman.packages]
condres = [
"python",
"xz",
"random-test"
]
[vim]
plugin_manager = "pathogen"
# [vim.plugins]
# condres = [
# "https://github.com/chriskempson/base16-vim.git/",
# "https://github.com/scrooloose/syntastic.git/",
# "https://github.com/bling/vim-airline/",
# "https://github.com/hynek/vim-python-pep8-indent.git/",
# "https://github.com/mhinz/vim-signify/",
# "https://github.com/flazz/vim-colorschemes.git",
# "https://github.com/luochen1990/rainbow.git",
# "https://github.com/rust-lang/rust.vim.git",
# "https://github.com/cespare/vim-toml.git",
# ]
# [vim.vimrc]
# base = [
# "syntax on",
# "set autoread",
# "set number",
# ]
# python = [
# "set expandtab",
# "set shiftwidth=4",
# "set softtabstop=4",
# ]
# colorscheme = [
# "colorscheme kalisi",
# "set background=dark",
# "let t_Co = 256",
# ]
# airline = [
# "let g:airline_powerline_fonts = 1",
# "let g:syntastic_check_on_open = 1",
# "let g:airline#extensions#tabline#enabled = 1",
# "let g:airline_theme=\"base16\" ",
# ]
# tfbrain = [
# 'map <C-p> :w \| !./push.sh<CR><CR>',
# ]
# ycm = [
# "let g:ycm_collect_identifiers_from_tags_files = 1",
# "let g:ycm_use_ultisnips_completer = 1",
# "let g:ycm_seed_identifiers_with_syntax = 1 ",
# "let g:ycm_complete_in_comments = 1",
# "let g:ycm_complete_in_strings = 1",
# "let g:ycm_autoclose_preview_window_after_insertion = 1",
# "let g:ycm_key_invoke_completion = '<S-Enter>'",
# "map <C-m> :YcmCompleter GoTo<CR>",
# "nmap <C-k> :YcmCompleter GetDoc<CR>",
# ]
# rainbow = [
# "let g:rainbow_active = 1"
# ]
[code]
[code.user]
gen = ['echo "Hello world!"', 'echo "Running user code"']
[code.root]
gen = ['echo "Hello world #2!"', 'echo "Running root code"']