1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:20:05 +08:00

Add lang#lasso layer (#3314)

This commit is contained in:
Wang Shidong 2020-01-30 14:31:07 +08:00 committed by GitHub
parent 65a57211ad
commit 7a53cc9971
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 72 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"=============================================================================
function! SpaceVim#layers#lang#ring#plugins() abort
function! SpaceVim#layers#lang#asepctj#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim-asepctj', { 'merged' : 0}])
return plugins

View File

@ -0,0 +1,15 @@
"=============================================================================
" lasso.vim --- lasso language support in SpaceVim
" Copyright (c) 2016-2019 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#lasso#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim-lasso', { 'merged' : 0}])
return plugins
endfunction

View File

@ -0,0 +1,29 @@
---
title: "SpaceVim lang#lasso layer"
description: "这一模块为 SpaceVim 提供了 lasso 的编辑支持,包括代码高亮。"
lang: zh
---
# [Available Layers](../../) >> lang#lasso
<!-- vim-markdown-toc GFM -->
- [模块简介](#模块简介)
- [启用模块](#启用模块)
<!-- vim-markdown-toc -->
## 模块简介
这一模块为 SpaceVim 提供了 lasso 的编辑支持。
## 启用模块
可通过在配置文件内加入如下配置来启用该模块:
```toml
[[layers]]
name = "lang#lasso"
```

27
docs/layers/lang/lasso.md Normal file
View File

@ -0,0 +1,27 @@
---
title: "SpaceVim lang#lasso layer"
description: "Lasso language support, include syntax highlighting."
---
# [Available Layers](../../) >> lang#lasso
<!-- vim-markdown-toc GFM -->
- [Description](#description)
- [Install](#install)
<!-- vim-markdown-toc -->
## Description
This layer is for editing lasso file, include syntax highlighting.
## Install
To use this configuration layer, update custom configuration file with:
```toml
[[layers]]
name = "lang#lasso"
```