-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcustom.vim.dist
77 lines (77 loc) · 2.09 KB
/
custom.vim.dist
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Here you can set your own Vim preferences and extensions, also the IDE plugin
" provides you a few commands and vars to change the default behaviours.
"
" Note that the commented vars are showing the default values.
"
"
""""""""" COLORS SETS """""""""""""""""""""""""""""""""""""""""""""""
" The default one is 'jellybeans', 'lucius' color set is also included in
" this package, you can also add your favorite ones, just copy them to
" ~/.vim/colors/ (or use pathogen) and reference them here. You might also
" need to set the background color.
"
" Default setup:
"
" color jellybeans
" set background=dark
"
"
" Light theme alternative setup:
"
" color lucius
" set background=light
" let g:airline_theme='dark'
"
""""""""" IDE COMMANDS """"""""""""""""""""""""""""""""""""""""""""""
"
" :IDEOpen Starts IDE mode.
" :IDEClose Stops IDE mode.
" :IDERebuildTags Rebuilds the project tags of the current
" buffer filetype.
"
"
""""""""" VARS """"""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Always open Vim in IDE mode, without
" considering the file type.
"
" let g:IDEAlways = 1
"
" Open Vim in IDE mode but only displaying
" the editor window.
"
" let g:IDEOnlyEditor = 1
"
"
""""""""" KEY MAPPINGS (CHANGE THEM AS YOU WISH) """"""""""""""""""""
"
" These are the default keys mappings, uncomment and replace the
" values with your mappings using the Vim <KEY> format.
"
""""""""""""""""""
"
" Mappings used when opening files both through the project project
" explorer and when jumping to functions/classes definitions.
"
" Note that to jump to functions/classes you must press CTRL + KEY,
" where KEY is the key specified in "g:IDE....Key" vars.
"
"let g:IDESplitWindowKey = 'c'
"let g:IDEVSplitWindowKey = 'f'
"let g:IDEOpenCurrentWindowKey = 'a'
"let g:IDEFindUsesKey = 'v'
"
""""""""""""""""""
"
" Mappings used to hide/show the lateral windows.
"
"let g:IDENERDTreeToggleKey = 'F7'
"let g:IDETagListToggleKey = 'F8'
"
""""""""""""""""""
"
" Other mappings
"
"let g:IDEPasteModeKey = 'F9'