-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
67 lines (58 loc) · 2.5 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
" ========================================================================
" _
" __ ___ _ _ __(_)_ _ ___
" / _/ _ \ || (_-< | ' \/ -_)
" \__\___/\_,_/__/_|_||_\___|
"
" ---------------------------
"
" AUTHOR : Omar Mekky
" EMAIL : [email protected]
" GITHUB : https://github.com/cousine
" LAST UPDATED : 28-02-2018
"
" ========================================================================
if &compatible
set nocompatible " Be iMproved
endif
" ========================================================================
" Load Python
" ========================================================================
let g:python_host_prog = '/Users/cousine/.pyenv/versions/neovim2/bin/python'
let g:python3_host_prog = '/Users/cousine/.pyenv/versions/neovim3/bin/python'
" ========================================================================
" Load Plugins
" ========================================================================
if filereadable(expand("~/.vim_configs/plugins.vim"))
source ~/.vim_configs/plugins.vim
endif
" ========================================================================
" NeoVim Specific Settings
" ========================================================================
if filereadable(expand("~/.vim_configs/neovim_settings.vim"))
source ~/.vim_configs/neovim_settings.vim
endif
" ========================================================================
" Vanilla Settings
" ========================================================================
if filereadable(expand("~/.vim_configs/settings.vim"))
source ~/.vim_configs/settings.vim
endif
" ========================================================================
" Plugins Settings
" ========================================================================
if filereadable(expand("~/.vim_configs/plugins_settings.vim"))
source ~/.vim_configs/plugins_settings.vim
endif
" ========================================================================
" Key Bindings
" ========================================================================
if filereadable(expand("~/.vim_configs/keys.vim"))
source ~/.vim_configs/keys.vim
endif
" ========================================================================
" Custom Commands and Functions
" ========================================================================
if filereadable(expand("~/.vim_configs/functions.vim"))
source ~/.vim_configs/functions.vim
endif