forked from vitaly/dotvim2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.config
232 lines (192 loc) · 5.54 KB
/
.config
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#
# : initialize git in target directory?
init_git=y
# With this "on", every time you yank in vim it will be immediately available in
# the system clipboard, as if you did '"+y'.
#
# I admit, it sounds like a terrific idea, I was all to tired to '"+yy' and
# stuff. But since I turned this on, I was having a different kind of problem.
#
# Before the switch I'd copy something from a web page, and then do e.g.
# 'cib<Apple>V' to replace content of a block with whatever I copied. Now it no
# longer works. As soon as you 'cib' the content of the block replaces your
# clipboard content, so you end up pasting it all back, duh! :)
#
# And to add insult to the injury, whatever you copied is not on the yank ring history.
#
# So... I'm still trying to make use of this as I'm all to tired of '"+y', but I
# decided to make this configurable, as not everyone might want to invest the time
# to rewire muscle memory ;)
# : "merge" vim and system clipboards?
system_clipboard=n
# What plugin to use to visualize indentation level:
# Valid options:
# 1: guides - Indent-Guides
# 2: lines - Yggdroot/indentLine
# 3: - - none
# : indentation plugin?
visual_indent=lines
#
# : install NerdTree(and tools) and NerdCommenter?
nerdtools=y
#
# : Install NerdTree?
nerdtree=y
# A plugin of NERDTree showing git status flags.
# : install nerdtree-git-plugin plugin?
nerdtree_git=y
#
# : Install NerdTreeTabs?
nerdtree_tabs=n
# switch.vim is a simple Vim plugin to switch segments of text with predefined replacements.
#
# e.g. switch 'foo' with "foo" with :foo etc
# : Install switch.vim?
switch_vim=y
# > Note: if YouCompleteMe installation fails, try to running it manually with "make completion"
# : use text & code completion with YouCompleteMe?
code_completion=y
#
# : complete code snippets?
snippets=y
# unite.vim plug-in can search and display information from arbitrary sources
# like files, buffers, recently used files or registers. You can run several
# pre-defined actions on a target displayed in the unite window.
#
# Using this plugin we can implement many of the functionalities usually provided
# by in other ways. e.g. we can use unite.vim to choose buffers, files, yank
# history, etc
# : configure unite.vim?
unite_vim=y
# CtrlP
#
# Full path fuzzy file, buffer, mru, tag, ... finder with an intuitive interface.
# Written in pure Vimscript for MacVim, gVim and Vim version 7.0+. Has full
# support for Vim's |regexp| as search pattern, built-in MRU files monitoring,
# project's root finder, and more.
# : install ctrlP?
ctrl_p=y
# Fzf
#
# A command-line fuzzy finder written in Go + vim configuration.
# : use fzf?
use_fzf=y
# What plugin to use for fuzzy file search?:
#
# Note: this only affect which of the options will be bound to '<leader>,'
# Valid options:
# 1: fzf - use ':Files' from FZF
# 2: unite - use ':Unite file_rec/async:!'
# 3: ctrlp - use ':CtrlP'
# : files search with?
fuzzy_files=fzf
# What plugin to use for fuzzy buffer switching?:
#
# Note: this only affect which of the options will be bound to '<leader>b'
# Valid options:
# 1: unite - use ":Unite buffer"
# 2: ctrlp - use ":CtrlPBuff"
# 3: fzf - use FZF ":Buffers"
# : buffer search with?
fuzzy_buffers=fzf
# Search for an entry in the current quickfix errors and jump to it.
# We can use several plugins for it:
# Note: 'osyo-manga/unite-quickfix' plugin will be installed if you choose 'unite' option.
# Valid options:
# 1: unite - use ':Unite quickfix'
# 2: ctrlp - use ':CtrlPQuickfix'
# : quickfix search with?
fuzzy_quickfix=ctrlp
# Search through the lines in all loaded buffers
# Valid options:
# 1: fzf - use ":Lines" from FZF
# 2: ctrlp - use ":CtrlPLine"
# : lines search with?
fuzzy_lines=fzf
# Tag search
# Valid options:
# 1: fzf - use ":Tags" from FZF
# 2: unite - use ":Unite tags"
# 3: ctrlp - use ":CtrlPTags"
# : tags search with?
fuzzy_tags=fzf
# YankRing is better IMHO, but you might prefer a unified interface ;)
# Valid options:
# 1: yankring - use dedicated yankring plgin
# 2: unite - use ":Unite history/yank"
# : yank history search with?
fuzzy_yank=yankring
#
# : Plugins for developers?
development=y
# Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.
# : Install delimitmate?
delimitmate=n
#
# : Syntax and Filetypes (languages) support
dev_lang=y
#
# : Dockerfile support?
dockerfile=n
#
# : Elixir support?
elixir=n
#
# : Elm support?
elm=n
#
# : Go support?
go=y
# Hi-speed HTML editing.
#
# emmet-vim is a vim plug-in which provides support for expanding abbreviations similar to emmet.
#
# See http://emmet.io
# : Use emmet-vim?
emmet=y
#
# : Javascript support?
javascript=y
#
# : Coffeescript support?
coffeescript=n
# VIM 'concealing' feature allows hiding stretches of text, based on syntax
# highlighting. It also allows replacing a stretch of text by a character.
#
# If you answer 'yes', we will replace 'function' with 'ƒ', 'NaN' with "ℕ", etc.
#
# You can see the complete configuration in
# plugins/60-lang/plugins/javascript/plugins/conceal/files/vimrc.plugins
# : Configure 'concealing' for javascript
js_conceal=n
#
# : JSON support?
json=y
# I don't like vim conceal feature when applied to json files.
# Strings loose quotes around them, and it's a bit confusing when you try to edit them.
# : disable conceal for json?
disable_json_conceal=y
#
# : Markdown support?
markdown=y
#
# : Raml support?
raml=n
#
# : Ruby support?
ruby=y
#
# : HAML support?
haml=n
#
# : Ruby on Rails support?
rails=y
#
# : Rust support?
rust=n
#
# : tmux config file support?
tmux=y
#
# : TypeScript support?
javascript=y