-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourcefiles.vim
More file actions
35 lines (30 loc) · 861 Bytes
/
Copy pathsourcefiles.vim
File metadata and controls
35 lines (30 loc) · 861 Bytes
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
if has('win32') || has('win64')
" Windows-spezifisch
set nocompatible
filetype off
" load plugins
source ~/appdata/local/nvim/vimconfig/plugins.d/plugins.vim
set rtp+=~/AppData/Local/nvim/vimconfig/
set shellslash
source ~/appData/local/nvim/vimconfig/vim.config.vim
"source functions.vim
"source design.vim
"source language.vim
"source abbreviations.vim
source ~/appData/local/nvim/vimconfig/keybindings.vim
"source keybindings.copypaste.vim
elseif has('unix')
" Linux/Mac
source ~/vimconfig/vim.config.vim
" let Vundle manage Vundle, required
source ~/vimconfig/plugins.d/plugins.vim
source ~/vimconfig/plugins.d/plugins.source
"source functions.vim
"source design.vim
"source language.vim
"source abbreviations.vim
source ~/vimconfig/keybindings.vim
"source keybindings.copypaste.vim
else
" Fallback
endif