mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:00:04 +08:00
update file head (#1407)
* update file head Update file head * Update file head * Update file head
This commit is contained in:
parent
753205a503
commit
3ccd4e4680
@ -1,3 +1,8 @@
|
||||
<!-- Copyright (c) 2016-2017 Wang Shidong & Contributors -->
|
||||
<!-- Author: Wang Shidong < wsdjeg at 163.com > -->
|
||||
<!-- URL: https://spacevim.org -->
|
||||
<!-- License: GPLv3 -->
|
||||
|
||||
# Contributor Covenant Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
@ -1,3 +1,8 @@
|
||||
<!-- Copyright (c) 2016-2017 Wang Shidong & Contributors -->
|
||||
<!-- Author: Wang Shidong < wsdjeg at 163.com > -->
|
||||
<!-- URL: https://spacevim.org -->
|
||||
<!-- License: GPLv3 -->
|
||||
|
||||
# Contributing to SpaceVim
|
||||
|
||||
SpaceVim is an volunteer effort; we encourage you to pitch in. The community makes SpaceVim what it is.
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" complete.vim --- SpaceVim complete API for bash
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:completer = fnamemodify(g:Config_Main_Home, ':p:h:h') . '/autoload/SpaceVim/bin/get_complete'
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" cmdlinemenu.vim --- SpaceVim cmdlinemenu API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:api = {}
|
||||
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" color.vim --- SpaceVim color API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:self = {}
|
||||
|
||||
let s:self._color_map = {
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" base64.vim --- SpaceVim base64 API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:CMP = SpaceVim#api#import('vim#compatible')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" dict.vim --- SpaceVim dict API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#api#data#dict#get() abort
|
||||
return map({
|
||||
\ 'make' : '',
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" json.vim --- SpaceVim json API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:json = {}
|
||||
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" list.vim --- SpaceVim list API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#api#data#list#get() abort
|
||||
return map({'pop' : '',
|
||||
\ 'push' : '',
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" number.vim --- SpaceVim number API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" string.vim --- SpaceVim string API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:file = {}
|
||||
|
||||
function! s:trim(str) abort
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" file.vim --- SpaceVim file API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
scriptencoding utf-8
|
||||
let s:file = {}
|
||||
let s:system = SpaceVim#api#import('system')
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" job.vim --- SpaceVim job API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#api#job#get() abort
|
||||
return deepcopy(s:self)
|
||||
endfunction
|
||||
|
@ -1,4 +1,10 @@
|
||||
|
||||
"=============================================================================
|
||||
" logger.vim --- SpaceVim logger API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:self = {
|
||||
\ 'name' : '',
|
||||
\ 'silent' : 1,
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" messletters.vim --- SpaceVim messletters API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
scriptencoding utf-8
|
||||
let s:chars = {}
|
||||
" type :
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" password.vim --- SpaceVim password API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:self = {}
|
||||
|
||||
let s:NUMBER = SpaceVim#api#import('data#number')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" prompt.vim --- SpaceVim prompt API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section prompt, api-prompt
|
||||
" @parentsection api
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" system.vim --- SpaceVim system API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
scriptencoding utf-8
|
||||
let s:system = {}
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" time.vim --- SpaceVim time API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:self = {}
|
||||
|
||||
" see: man 3 strftime
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" transient_state.vim --- SpaceVim transient_state API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:self._keys = {}
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" box.vim --- SpaceVim box API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:box = {}
|
||||
let s:json = SpaceVim#api#import('data#json')
|
||||
let s:string = SpaceVim#api#import('data#string')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" icon.vim --- SpaceVim icon API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
scriptencoding utf-8
|
||||
let s:self = {}
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" buffer.vim --- SpaceVim buffer API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" command.vim --- SpaceVim command API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:self.options = {}
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" compatible.vim --- SpaceVim compatible API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#api#vim#compatible#get() abort
|
||||
return map({
|
||||
\ 'execute' : '',
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" highlight.vim --- SpaceVim highlight API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
function! s:self.group2dict(name) abort
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" key.vim --- SpaceVim key API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:specified_keys = {
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" mapping.vim --- SpaceVim mapping API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:VIM = SpaceVim#api#import('vim#compatible')
|
||||
|
||||
function! SpaceVim#api#vim#mapping#get() abort
|
||||
|
@ -1,10 +1,10 @@
|
||||
" ============================================================================
|
||||
" File: message.vim
|
||||
" Description: vim#message api of SpaceVim
|
||||
" Author: L-stt
|
||||
" Website: https://spacevim.org
|
||||
" License: GPLv3
|
||||
" ============================================================================
|
||||
"=============================================================================
|
||||
" message.vim --- SpaceVim message API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section vim#message, api-vim-message
|
||||
|
@ -1,10 +1,10 @@
|
||||
" ============================================================================
|
||||
" File: sid.vim
|
||||
" Description: vim#sid api of SpaceVim
|
||||
" Author: L-stt
|
||||
" Website: https://spacevim.org
|
||||
" License: GPLv3
|
||||
" ============================================================================
|
||||
"=============================================================================
|
||||
" sid.vim --- SpaceVim SID API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section sid, api-vim-sid
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" signatures.vim --- SpaceVim signatures API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
let s:self = {}
|
||||
let s:self.id = []
|
||||
function! s:self.info(line, col, message) abort
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" statusline.vim --- SpaceVim statusline API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" tab.vim --- SpaceVim tab API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:self = {}
|
||||
|
||||
let s:self._tree = {}
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" html.vim --- SpaceVim html API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" http.vim --- SpaceVim http API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" xml.vim --- SpaceVim xml API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" commands.vim --- commands in SpaceVim
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#commands#load() abort
|
||||
""
|
||||
" Load exist layer, {layers} can be a string of a layer name, or a list
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" custom.vim --- custom API in SpaceVim
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#custom#profile(dict) abort
|
||||
for key in keys(a:dict)
|
||||
call s:set(key, a:dict[key])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" default.vim --- default options in SpaceVim
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
scriptencoding utf-8
|
||||
function! SpaceVim#default#SetOptions() abort
|
||||
" basic vim settiing
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" health.vim --- SpaceVim health checker
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#health#report() abort
|
||||
let items = map(SpaceVim#util#globpath(&rtp,'autoload/SpaceVim/health/*'), "fnamemodify(v:val,':t:r')")
|
||||
let report = []
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" clipboard.vim --- SpaceVim clipboard checker
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#health#clipboard#check() abort
|
||||
let result = ['SpaceVim clipboard support check report:']
|
||||
call add(result, 'Checking +clipboard:')
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" environment.vim --- SpaceVim environment checker
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#health#environment#check() abort
|
||||
let result = ['SpaceVim environment check report:']
|
||||
call add(result, 'Current progpath: ' . v:progname . '(' . v:progpath . ')')
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" lua.vim --- SpaceVim lua checker
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#health#lua#check() abort
|
||||
let result = ['SpaceVim lua support check report:']
|
||||
call add(result, 'Checking +lua:')
|
||||
|
@ -1,3 +1,10 @@
|
||||
"=============================================================================
|
||||
" python.vim --- SpaceVim python checker
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
function! SpaceVim#health#python#check() abort
|
||||
let result = ['SpaceVim python support check report:']
|
||||
if has('nvim')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" issue.vim --- issue reporter for SpaceVim
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
let s:CMP = SpaceVim#api#import('vim#compatible')
|
||||
|
||||
function! SpaceVim#issue#report() abort
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" layers.vim --- layers public API
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section Layers, layers
|
||||
" SpaceVim support such layers:
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" VersionControl.vim --- SpaceVim version control layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#VersionControl#config() abort
|
||||
let g:_spacevim_mappings_space.g = get(g:_spacevim_mappings_space, 'g', {'name' : '+VersionControl/git'})
|
||||
call SpaceVim#mapping#space#def('nnoremap', ['g', '.'], 'call call('
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" autocomplete.vim --- SpaceVim autocomplete layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section autocomplete, autocomplete
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" chat.vim --- SpaceVim chat layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#chat#plugins() abort
|
||||
return [
|
||||
\ ['vim-chat/vim-chat',{ 'merged' : 0, 'loadconf' : 1}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" checkers.vim --- SpaceVim checkers layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section checkers, layer-checkers
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" chinese.vim --- SpaceVim chinese layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#chinese#plugins() abort
|
||||
let plugins = [
|
||||
\ ['yianwillis/vimcdoc', {'merged' : 0}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" colorscheme.vim --- SpaceVim colorscheme layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section colorscheme, colorscheme
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" core.vim --- SpaceVim core layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#core#plugins() abort
|
||||
return [
|
||||
\ ['Shougo/vimproc.vim', {'build' : ['make']}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" banner.vim --- SpaceVim core#banner layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
scriptencoding utf-8
|
||||
function! SpaceVim#layers#core#banner#config() abort
|
||||
let g:_spacevim_welcome_banners = [
|
||||
|
@ -1,10 +1,10 @@
|
||||
" ============================================================================
|
||||
" File: statusline.vim
|
||||
" Description: SpaceVim core#statusline layer
|
||||
" Author: Shidong Wang <wsdjeg@outlook.com>
|
||||
" Website: https://spacevim.org
|
||||
" License: GPLv3
|
||||
" ============================================================================
|
||||
"=============================================================================
|
||||
" statusline.vim --- SpaceVim statusline
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
" statusline
|
||||
scriptencoding utf-8
|
||||
|
@ -1,7 +1,7 @@
|
||||
"=============================================================================
|
||||
" tabline.vim --- core#tabline Layer file for SpaceVim
|
||||
" Copyright (c) 2012-2016 Shidong Wang & Contributors
|
||||
" Author: Shidong Wang < wsdjeg at 163.com >
|
||||
" tabline.vim --- SpaceVim tabline
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" cscope.vim --- SpaceVim cscope layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#cscope#plugins() abort
|
||||
let plugins = [
|
||||
\ ['SpaceVim/cscope.vim'],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" ctrlp.vim --- SpaceVim ctrlp layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#ctrlp#plugins() abort
|
||||
let plugins = [
|
||||
\ ['ctrlpvim/ctrlp.vim', {'loadconf' : 1}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" debug.vim --- SpaceVim debug layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#debug#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins,['idanarye/vim-vebugger', {'merged' : 0}])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" default.vim --- SpaceVim default layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section Default, default
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" denite.vim --- SpaceVim denite layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#denite#plugins() abort
|
||||
return [
|
||||
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" edit.vim --- SpaceVim edit layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
scriptencoding utf-8
|
||||
let s:PASSWORD = SpaceVim#api#import('password')
|
||||
let s:NUMBER = SpaceVim#api#import('data#number')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" exprfold.vim --- SpaceVim exprfold layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section exprfold, layer-exprfold
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" games.vim --- SpaceVim games layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#games#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins, ['wsdjeg/vim2048', {'merged' : 0}])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" git.vim --- SpaceVim git layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#git#plugins() abort
|
||||
let plugins = [
|
||||
\ ['junegunn/gv.vim', { 'on_cmd' : ['GV']}],
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" incsearch.vim --- SpaceVim incsearch layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section incsearch, layer-incsearch
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" indentmove.vim --- SpaceVim indentmove layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section indentmove, layer-indentmove
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" japanese.vim --- SpaceVim japanese layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#japanese#plugins() abort
|
||||
return [
|
||||
\ ['vim-jp/vimdoc-ja'],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" lang.vim --- SpaceVim lang layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#plugins() abort
|
||||
let plugins = [
|
||||
\ ['digitaltoad/vim-jade', { 'on_ft' : ['jade']}],
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" c.vim --- SpaceVim lang#c layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section lang#c, layer-lang-c
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" clojure.vim --- SpaceVim lang#clojure layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#clojure#plugins() abort
|
||||
let plugins = []
|
||||
if has('nvim')
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" crystal.vim --- SpaceVim lang#crystal layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#crystal, layer-lang-crystal
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" dart.vim --- SpaceVim lang#dart layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#dart#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins, ['dart-lang/dart-vim-plugin', {'merged' : 0}])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" elixir.vim --- SpaceVim lang#elixir layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#elixir, layer-lang-elixir
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" go.vim --- SpaceVim lang#go layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#go, layer-lang-go
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" haskell.vim --- SpaceVim lang#haskell layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#haskell#plugins() abort
|
||||
let plugins = [
|
||||
\ ['neovimhaskell/haskell-vim', { 'on_ft': 'haskell' }],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" html.vim --- SpaceVim lang#html layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#html#plugins() abort
|
||||
let plugins = [
|
||||
\ ['groenewege/vim-less', { 'on_ft' : ['less']}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" java.vim --- SpaceVim lang#java layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#java, layer-lang-java
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" javascript.vim --- SpaceVim lang#javascript layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#javascript#plugins() abort
|
||||
let plugins = [
|
||||
\ ['MaxMEllon/vim-jsx-pretty', { 'on_ft': 'javascript' }],
|
||||
|
@ -5,6 +5,7 @@
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#julia, layer-lang-julia
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" kotlin.vim --- SpaceVim lang#kotlin layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#kotlin, layer-lang-kotlin
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" lisp.vim --- SpaceVim lang#lisp layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#lang#lisp#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins,['l04m33/vlime', {'on_ft' : 'lisp', 'rtp': 'vim'}])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" lua.vim --- SpaceVim lang#lua layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#lua, layer-lang-lua
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" ocaml.vim --- SpaceVim lang#ocaml layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section lang#ocaml, layer-lang-ocaml
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" perl.vim --- SpaceVim lang#perl layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#lang#perl#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins, ['WolfgangMehner/perl-support', {'on_ft' : 'perl'}])
|
||||
|
@ -1,7 +1,7 @@
|
||||
"=============================================================================
|
||||
" pony.vim --- pony Layer file for SpaceVim
|
||||
" Copyright (c) 2012-2016 kShidong Wang & Contributors
|
||||
" Author: Bambang Purnomsoidi D. P, < bambangpdp at gmail.com >
|
||||
" pony.vim --- SpaceVim lang#pony layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" ps1.vim --- SpaceVim lang#ps1 layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#lang#ps1#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins, ['PProvost/vim-ps1'])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" puppet.vim --- SpaceVim lang#puppet layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#puppet, layer-lang-puppet
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" python.vim --- SpaceVim lang#python layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#python, layer-lang-python
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" rust.vim --- SpaceVim lang#rust layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section lang#rust, layer-lang-rust
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" scala.vim --- SpaceVim lang#scala layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section lang#scala, layer-lang-scala
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" sh.vim --- SpaceVim lang#sh layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#sh#plugins() abort
|
||||
let l:plugins = []
|
||||
call add(l:plugins, ['chrisbra/vim-zsh', { 'on_ft' : 'zsh' }])
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" solidity.vim --- SpaceVim solidity layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lang#solidity#plugins() abort
|
||||
let plugins = [
|
||||
\ ['tomlion/vim-solidity', {'merged' : 0, 'on_ft' : 'solidity'}]
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" swig.vim --- SpaceVim lang#swig layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#lang#swig#plugins() abort
|
||||
let plugins = []
|
||||
call add(plugins, ['SpaceVim/vim-swig'])
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" tmux.vim --- SpaceVim tmux layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section lang#tmux, layer-lang-tmux
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" vim.vim --- SpaceVim vim layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
function! SpaceVim#layers#lang#vim#plugins() abort
|
||||
let plugins = [
|
||||
\ ['syngan/vim-vimlint', { 'on_ft' : 'vim'}],
|
||||
|
@ -1,3 +1,12 @@
|
||||
"=============================================================================
|
||||
" xml.vim --- SpaceVim lang#xml layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
|
||||
""
|
||||
" @section lang#xml, layer-lang-xml
|
||||
" @parentsection layers
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" lsp.vim --- SpaceVim lsp layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#lsp#plugins() abort
|
||||
let plugins = []
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" mail.vim --- SpaceVim mail layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
function! SpaceVim#layers#mail#plugins() abort
|
||||
return [
|
||||
\ ['vim-mail/vim-mail',{ 'merged' : 0, 'loadconf' : 1}],
|
||||
|
@ -1,3 +1,11 @@
|
||||
"=============================================================================
|
||||
" operator.vim --- SpaceVim operator layer
|
||||
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||
" Author: Wang Shidong < wsdjeg at 163.com >
|
||||
" URL: https://spacevim.org
|
||||
" License: GPLv3
|
||||
"=============================================================================
|
||||
|
||||
""
|
||||
" @section operator, layer-operator
|
||||
" @parentsection layers
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user