2017-12-12 16:32:21 +08:00
|
|
|
"=============================================================================
|
|
|
|
" main.vim --- Main file of SpaceVim
|
|
|
|
" Copyright (c) 2016-2017 Shidong Wang & Contributors
|
|
|
|
" Author: Shidong Wang < wsdjeg at 163.com >
|
|
|
|
" URL: https://spacevim.org
|
2018-02-15 22:25:03 +08:00
|
|
|
" License: GPLv3
|
2017-12-12 16:32:21 +08:00
|
|
|
"=============================================================================
|
|
|
|
|
2018-05-02 20:26:58 +08:00
|
|
|
" Enable nocompatible
|
|
|
|
if has('vim_starting')
|
2018-08-24 21:06:37 +08:00
|
|
|
" set default encoding to utf-8
|
|
|
|
" Let Vim use utf-8 internally, because many scripts require this
|
2019-01-28 22:12:37 +08:00
|
|
|
exe 'set encoding=utf-8'
|
|
|
|
scriptencoding utf-8
|
2018-05-02 20:26:58 +08:00
|
|
|
if &compatible
|
|
|
|
set nocompatible
|
|
|
|
endif
|
2018-07-28 10:58:12 +08:00
|
|
|
" python host
|
|
|
|
if !empty($PYTHON_HOST_PROG)
|
|
|
|
let g:python_host_prog = $PYTHON_HOST_PROG
|
|
|
|
endif
|
|
|
|
if !empty($PYTHON3_HOST_PROG)
|
|
|
|
let g:python3_host_prog = $PYTHON3_HOST_PROG
|
|
|
|
endif
|
2018-05-02 20:26:58 +08:00
|
|
|
endif
|
2018-02-22 21:15:46 +08:00
|
|
|
" Detect root directory of SpaceVim
|
2019-02-03 00:07:31 +08:00
|
|
|
if has('win16') || has('win32') || has('win64')
|
|
|
|
function! s:resolve(path) abort
|
|
|
|
let cmd = 'dir /a "' . a:path . '" | findstr SYMLINK'
|
|
|
|
" 2018/12/07 周五 下午 10:23 <SYMLINK> vimfiles [C:\Users\Administrator\.SpaceVim]
|
|
|
|
" ref: https://superuser.com/questions/524669/checking-where-a-symbolic-link-points-at-in-windows-7
|
|
|
|
silent let rst = system(cmd)
|
|
|
|
if !v:shell_error
|
|
|
|
let dir = split(rst)[-1][1:-2]
|
|
|
|
return dir
|
|
|
|
endif
|
|
|
|
return a:path
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! s:resolve(path) abort
|
|
|
|
return resolve(a:path)
|
|
|
|
endfunction
|
|
|
|
endif
|
2020-03-02 08:57:14 +08:00
|
|
|
let g:_spacevim_root_dir = fnamemodify(s:resolve(fnamemodify(expand('<sfile>'),
|
2019-02-03 00:07:31 +08:00
|
|
|
\ ':p:h:h:gs?\\?'.((has('win16') || has('win32')
|
2020-03-02 08:57:14 +08:00
|
|
|
\ || has('win64'))?'\':'/') . '?')), ':p:gs?[\\/]?/?')
|
2018-02-22 21:15:46 +08:00
|
|
|
lockvar g:_spacevim_root_dir
|
2019-02-03 00:07:31 +08:00
|
|
|
if has('nvim')
|
|
|
|
let s:qtdir = split(&rtp, ',')[-1]
|
|
|
|
if s:qtdir =~# 'nvim-qt'
|
|
|
|
let &rtp = s:qtdir . ',' . g:_spacevim_root_dir . ',' . $VIMRUNTIME
|
|
|
|
else
|
|
|
|
let &rtp = g:_spacevim_root_dir . ',' . $VIMRUNTIME
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
let &rtp = g:_spacevim_root_dir . ',' . $VIMRUNTIME
|
|
|
|
endif
|
2019-06-08 15:09:53 +08:00
|
|
|
|
|
|
|
call SpaceVim#begin()
|
2016-12-26 21:11:19 +08:00
|
|
|
|
2018-04-21 22:58:23 +08:00
|
|
|
call SpaceVim#custom#load()
|
2016-12-28 21:36:11 +08:00
|
|
|
|
|
|
|
call SpaceVim#end()
|
2017-08-16 06:09:25 +08:00
|
|
|
" vim:set et sw=2 cc=80:
|