-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.exvim
48 lines (36 loc) · 1.31 KB
/
app.exvim
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
-- Edit and save the file.
-- The variables will be loaded and exists as g:ex_{var} in Vim's runtime.
-- For example, "foo = true" will be "g:ex_foo", and the value is "true"
-- Choose your project type
-- Press <F5> to apply project_type for other settings
project_type = all -- { all, build, clang, data, doc, game, server, shell, web, ... }
-- Project Settings:
version = 10
project_name = 'app'
-- File And Folder Filters:
folder_filter_mode = include -- { include, exclude }
folder_filter +=
file_filter += cs,cpp,json,html,js,css,c
file_ignore_pattern +=
-- Building:
builder = gulp -- { gulp, grunt, gcc, xcode, vs, unity3d, ... }
build_opt = ''
-- ex-project Options:
enable_project_browser = true -- { true, false }
project_browser = ex -- { ex, nerdtree }
-- ex-gsearch Options:
enable_gsearch = true -- { true, false }
gsearch_engine = idutils -- { idutils, grep }
-- ex-tags Options:
enable_tags = true -- { true, false }
enable_symbols = true -- { true, false }
enable_inherits = true -- { true, false }
-- ex-cscope Options:
enable_cscope = false -- { true, false }
-- ex-macrohl Options:
enable_macrohl = false -- { true, false }
-- restore buffers:
enable_restore_bufs = false -- { true, false }
-- Project References:
-- sub_project_refs += foobar1.exvim -- example
-- sub_project_refs += foobar2.exvim -- example