mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-23 17:49:57 +08:00
Fix blog link
This commit is contained in:
parent
fb32bedec7
commit
86ccba902e
26
README.md
26
README.md
@ -29,7 +29,6 @@ Here is a throughput graph of the repository for the last few weeks:
|
|||||||
- [Update](#update)
|
- [Update](#update)
|
||||||
- [Community](#community)
|
- [Community](#community)
|
||||||
- [Support SpaceVim](#support-spacevim)
|
- [Support SpaceVim](#support-spacevim)
|
||||||
- [Report bugs](#report-bugs)
|
|
||||||
- [contribute to SpaceVim](#contribute-to-spacevim)
|
- [contribute to SpaceVim](#contribute-to-spacevim)
|
||||||
- [Write post about SpaceVim](#write-post-about-spacevim)
|
- [Write post about SpaceVim](#write-post-about-spacevim)
|
||||||
- [Credits & Thanks](#credits--thanks)
|
- [Credits & Thanks](#credits--thanks)
|
||||||
@ -75,13 +74,26 @@ here is an example:
|
|||||||
" file for all possible options:
|
" file for all possible options:
|
||||||
let g:spacevim_default_indent = 3
|
let g:spacevim_default_indent = 3
|
||||||
let g:spacevim_max_column = 80
|
let g:spacevim_max_column = 80
|
||||||
let g:spacevim_colorscheme = 'jellybeans'
|
|
||||||
let g:spacevim_plugin_manager = 'dein' " neobundle or dein or vim-plug
|
|
||||||
|
|
||||||
" Change the default directory where all miscellaneous persistent files go.
|
" Change the default directory where all miscellaneous persistent files go.
|
||||||
" By default it is ~/.cache/vimfiles.
|
" By default it is ~/.cache/vimfiles.
|
||||||
let g:spacevim_plugin_bundle_dir = '~/.cache/vimfiles'
|
let g:spacevim_plugin_bundle_dir = '~/.cache/vimfiles'
|
||||||
|
|
||||||
|
" set SpaceVim colorscheme
|
||||||
|
let g:spacevim_colorscheme = 'jellybeans'
|
||||||
|
|
||||||
|
" Set plugin manager, you want to use, default is dein.vim
|
||||||
|
let g:spacevim_plugin_manager = 'dein' " neobundle or dein or vim-plug
|
||||||
|
|
||||||
|
" use space as `<Leader>`
|
||||||
|
let mapleader = "\<space>"
|
||||||
|
|
||||||
|
" Set windows shortcut leader [Window], default is `s`
|
||||||
|
let g:spacevim_windows_leader = 's'
|
||||||
|
|
||||||
|
" Set unite work flow shortcut leader [Unite], default is `f`
|
||||||
|
let g:spacevim_unite_leader = 'f'
|
||||||
|
|
||||||
" By default, language specific plugins are not loaded. This can be changed
|
" By default, language specific plugins are not loaded. This can be changed
|
||||||
" with the following, then the plugins for go development will be loaded.
|
" with the following, then the plugins for go development will be loaded.
|
||||||
call SpaceVim#layers#load('lang#go')
|
call SpaceVim#layers#load('lang#go')
|
||||||
@ -89,9 +101,6 @@ call SpaceVim#layers#load('lang#go')
|
|||||||
" loaded ui layer
|
" loaded ui layer
|
||||||
call SpaceVim#layers#load('ui')
|
call SpaceVim#layers#load('ui')
|
||||||
|
|
||||||
" Alternatively, you can set this variable to load exactly what you want:
|
|
||||||
let g:spacevim_plugin_groups = ['core', 'web']
|
|
||||||
|
|
||||||
" If there is a particular plugin you don't like, you can define this
|
" If there is a particular plugin you don't like, you can define this
|
||||||
" variable to disable them entirely:
|
" variable to disable them entirely:
|
||||||
let g:spacevim_disabled_plugins=[
|
let g:spacevim_disabled_plugins=[
|
||||||
@ -106,9 +115,6 @@ let g:spacevim_custom_plugins = [
|
|||||||
|
|
||||||
" set the guifont
|
" set the guifont
|
||||||
let g:spacevim_guifont = 'DejaVu\ Sans\ Mono\ for\ Powerline\ 11'
|
let g:spacevim_guifont = 'DejaVu\ Sans\ Mono\ for\ Powerline\ 11'
|
||||||
|
|
||||||
" use space as `<Leader>`
|
|
||||||
let mapleader = "\<space>"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Comprehensive documentation is available for each layer by <kbd>:h SpaceVim</kbd>.
|
Comprehensive documentation is available for each layer by <kbd>:h SpaceVim</kbd>.
|
||||||
@ -194,6 +200,8 @@ Before contributing be sure to consult the contribution guidelines and conventio
|
|||||||
|
|
||||||
### Write post about SpaceVim
|
### Write post about SpaceVim
|
||||||
|
|
||||||
|
if you want to write something about SpaceVim, and want your post be linked in [SpaceVim's blog page](https://spacevim.org/blog), please show us the link.
|
||||||
|
|
||||||
|
|
||||||
## Credits & Thanks
|
## Credits & Thanks
|
||||||
- [](https://github.com/SpaceVim/SpaceVim/graphs/contributors)
|
- [](https://github.com/SpaceVim/SpaceVim/graphs/contributors)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: "Blog"
|
title: "Blog"
|
||||||
|
permalink: /blog
|
||||||
---
|
---
|
||||||
|
|
||||||
# Blog
|
# Blog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user