-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
72 lines (55 loc) · 1.65 KB
/
.vimrc
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
" Author: Josh Peak
" Date: 2017-JAN-17
" Description: Main entrypoint script for my vim configuration
"
set encoding=utf-8
scriptencoding utf-8
" Refactoring entry point vimrc
" Sub scripts can be found in the .vim/ folder
" TODO:
" Make better use of vim plugins paths
" https://vimways.org/2018/from-vimrc-to-vim/
" https://vimways.org/2018/runtime-hackery/
"
" Make cross platform support cleaner
" https://vimways.org/2018/make-your-setup-truly-cross-platform/
" ---------------------------
" Vi Compatible Settings: Tabs, Colors, Folding and anything that are plain Vi Settings
" ---------------------------
runtime vi_compatible_settings.vim
runtime indent_text_object.vim
" ---------------------------
" Vim Basic Settings: Tabs, Colors, Folding and anything that are plain Vim Settings
" ---------------------------
if !has('compatible')
runtime basic_settings.vim
endif
" ---------------------------
" PLUGINS: Plugin dependent settings
" ---------------------------
if !has('compatible')
" Plugins:
runtime plugins.vim
runtime filetype_defs.vim
" Lightline: status bar configuration
runtime lightline.vim
" ALE Async Linting Engine: - Linting and Syntax checker plugin configuration
runtime ale_async_lint_engine.vim
runtime ultisnips.vim
" NERDTree File Navigation:
runtime nerdtree.vim
" NERDCommenter:
runtime nerdcommenter.vim
" Indent Guides:
runtime indentguides.vim
" RainbowParenthesis:
runtime rainbowparenthesis.vim
runtime dev_js.vim
runtime dev_py.vim
runtime dev_scala.vim
runtime arduino.vim
" Markdown Document Editting:
runtime markdown.vim
" GVim: Gui based settings
runtime gui.vim
endif