-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.proton
139 lines (129 loc) · 4.95 KB
/
.proton
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
;; Layers you wish to have active
;; To get a list of all available layers, check foo.com/layers
:layers
[:core
:tools/git
:lang/clojure
:lang/elixir
:lang/python
:config-files/docker
:lang/markdown
:lang/json
:lang/less
:lang/css
;:lang/ruby
:lang/html
:lang/elixir
:lang/handlebars
:lang/elm
:lang/typescript
;:lang/go
;:config-files/docker
:tools/linter
:lang/javascript
:apps/notes
:fun/power_mode]
;; Packages that are not part of a layer. List them here as keyword
;; All packages will be ensured to be installed. Stuff that is not listed here
;; Will get uninstalled so choose wisely!
:additional-packages
[;:git-diff-details
:atom-fuzzy-grep
:atom-auto-programming
; :term3
:typewriter
:slime
:monday-syntax
:ask-stack
:clipboard-plus
:line-diff-details
; :tmux-send
:atom-cljs-doc
:an-old-hope-syntax
:atom-hot-package-loader
:jellybeans
:railscasts-prime-syntax
:tab-control
:symbol-gen
:language-log
:goto-definition
:split-diff
:atom-bootstrap3
:regex-railroad-diagram
:git-blame
:node-debugger
:flexible-ui
:svg-preview
:one-dark-vivid-syntax
:open-this]
:disabled-packages
[
:release-notes
:about
:welcome
:autoflow
:metrics
:open-on-github
:package-generator
:go-to-line
:exception-reporting
:archive-view
:autoupdate-packages
:blame
:react]
;; Don't like a keybinding or want to add something yourself? Do it here
:keybindings
{:slash {:action "fuzzy-grep:toggle"}
:t {:z {:action "zen:toggle" :target "atom-text-editor:not([mini])" :title "zen view"}}
:o {:g {:g {:action "goto-definition:go" :target "atom-text-editor:not(mini)" :title "go to def"}}}
:g {:d {:t {:action "git-diff-details:toggle-git-diff-details" :target "atom-text-editor.is-focused:not(.mini)"}
:r {:action "git-reset-selection:reset" :target "atom-text-editor.is-focused:not(.mini)"}
:s {:action "split-diff:toggle" :title "split diff"}}
:B {:action "git-blame:toggle" :title "blame"}}
:s {:l {:action "symbols-view:toggle-file-symbols" :target "atom-text-editor:not([mini])" :title "file symbols"}
:t {:action "symbols-tree-view:toggle" :title "symbols tree"}
:T {:action "todo-show:find-in-project"}}
:p {:slash {:action "narrow:search" :title "search in project"}}}
:configuration
[["git-history.showDiff" false]
["core.ignoredNames" [".git", ".hg", ".svn", ".DS_Store", "._*", "Thumbs.db", "dist", "public", "node_modules", "bower_components", "tmp", "_build", "deps"]]
["editor.fontSize" 13]
["nvatom.directory", "~/nv-notes"]
["proton.core.inputProvider" :vim-mode-plus]
["proton.core.whichKeyDelay" 0.4]
["activate-power-mode.particles.spawnCount.max" 4]
["activate-power-mode.particles.spawnCount.min" 2]
["activate-power-mode.particles.totalCount.max" 100]
["editor.fontFamily" "Fira Code"]
["core.themes" ["flexible-ui" "one-dark-vivid-syntax"]]
["proton.lang.javascript.linter" "eslint"]
["zentabs.maximumOpenedTabs" 5]
["linter-pep8.ignoreErrorCodes" ["E111"]]
["editor.preferredLineLength" 100]
["editor.tabLength" 2]
["editor.tabLength" 2 {:scopeSelector [".source.python"]}]
["editor.softWrap" false]
["Zen.width" 160]
["nuclide.showHome" false]
["git-diff.showIconsInEditorGutter" true]
["proton.core.wipeUserConfigs" false]
["atom-fuzzy-grep.showFullPath" true]
["atom-fuzzy-grep.maxCandidates" 40]
["atom-hot-package-loader.onlyInDevMode" false]
["atom-hot-package-loader.autoWatchTarget" true]
["linter.lintOnFly" false]
["ember-cli-helper.pathToNodeExecutable" "node"]
["ember-cli-helper.pathToEmberExecutable" "ember"]]
;; Want some custom behavior inside a certain window?
;; For example you prefer navigating with esc and enter? Add it here.
:keymaps [
{:selector "atom-workspace atom-text-editor.vim-mode-plus.visual-mode" :keymap [["v" ["expand-region:expand"]]
["ctrl-v" ["expand-region:shrink"]]]}
{:selector "atom-workspace atom-text-editor.vim-mode-plus-search" :keymap [["ctrl-v" "core:paste"]]}
{:selector "atom-workspace atom-text-editor.mini" :keymap [["ctrl-n" "core:move-down"]]}
{:selector "atom-workspace atom-text-editor.mini" :keymap [["ctrl-p" "core:move-up"]]}
{:selector "atom-workspace atom-text-editor.vim-mode-plus.insert-mode[data-grammar~=html]:not(.autocomplete-active)" :keymap [["ctrl-j" "emmet:expand-abbreviation"]]}
{:selector "atom-workspace atom-text-editor:not([mini])" :keymap [["ctrl-]" "symbols-view:go-to-declaration"]]}
{:selector "atom-workspace atom-pane .term3 .terminal" :keymap [["space" "native!"]]}
{:selector "atom-text-editor.vim-mode-plus.normal-mode" :keymap [["g f" "open-this:here"]]}]}