mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-23 01:09:56 +08:00
Add fonts doc
This commit is contained in:
parent
3500e18f01
commit
81230e790d
@ -32,6 +32,9 @@ let g:deoplete#ignore_sources.go = get(g:deoplete#ignore_sources, 'go', ['omni']
|
|||||||
call deoplete#custom#set('go', 'mark', '')
|
call deoplete#custom#set('go', 'mark', '')
|
||||||
call deoplete#custom#set('go', 'rank', 9999)
|
call deoplete#custom#set('go', 'rank', 9999)
|
||||||
|
|
||||||
|
" markdown
|
||||||
|
let g:deoplete#ignore_sources.markdown = get(g:deoplete#ignore_sources, 'markdown', ['tag'])
|
||||||
|
|
||||||
" perl
|
" perl
|
||||||
let g:deoplete#omni#input_patterns.perl = get(g:deoplete#omni#input_patterns, 'perl', [
|
let g:deoplete#omni#input_patterns.perl = get(g:deoplete#omni#input_patterns, 'perl', [
|
||||||
\'[^. \t0-9]\.\w*',
|
\'[^. \t0-9]\.\w*',
|
||||||
|
@ -37,6 +37,7 @@ SpaceVim 是一个社区驱动的模块化 vim/neovim 配置集合,其中包
|
|||||||
* [文档](#文档)
|
* [文档](#文档)
|
||||||
* [优雅的界面](#优雅的界面)
|
* [优雅的界面](#优雅的界面)
|
||||||
* [主题](#主题)
|
* [主题](#主题)
|
||||||
|
* [字体](#字体)
|
||||||
* [快捷键导航](#快捷键导航)
|
* [快捷键导航](#快捷键导航)
|
||||||
* [模块化配置](#模块化配置)
|
* [模块化配置](#模块化配置)
|
||||||
* [Denite/Unite为主的工作平台](#deniteunite为主的工作平台)
|
* [Denite/Unite为主的工作平台](#deniteunite为主的工作平台)
|
||||||
@ -122,6 +123,16 @@ let g:spacevim_colorscheme_bg = 'dark'
|
|||||||
|
|
||||||
SpaceVim 在终端下默认使用了真色,因此使用之前需要确认下你的终端是否支持真色,可以阅读 [Colours in terminal](https://gist.github.com/XVilka/8346728) 了解根多关于真色的信息。
|
SpaceVim 在终端下默认使用了真色,因此使用之前需要确认下你的终端是否支持真色,可以阅读 [Colours in terminal](https://gist.github.com/XVilka/8346728) 了解根多关于真色的信息。
|
||||||
|
|
||||||
|
#### 字体
|
||||||
|
|
||||||
|
在 SpaceVim 中默认的字体是 DejaVu Sans Mono for Powerline. 如果你也喜欢这一字体,建议将这一字体安装到系统中。如果需要修改 SpaceVim 的字体,可以在用户配置文件中修改 `g:spacevim_guifont`,默认值为:
|
||||||
|
|
||||||
|
```vim
|
||||||
|
let g:spacevim_guifont = 'DejaVu\ Sans\ Mono\ for\ Powerline\ 11'
|
||||||
|
```
|
||||||
|
|
||||||
|
如果指定的字体不存在,将会使用系统默认的字体,此外,这一选项在终端下是无效的,终端下修改字体,需要修改终端自身配置。
|
||||||
|
|
||||||
### 快捷键导航
|
### 快捷键导航
|
||||||
|
|
||||||
SpaceVim 所有的快捷键都不需要去记忆,有强大的快捷键导航系统来提示每一个按键的具体功能,比如 Normal 模式下按下空格键,将出现如下提示:
|
SpaceVim 所有的快捷键都不需要去记忆,有强大的快捷键导航系统来提示每一个按键的具体功能,比如 Normal 模式下按下空格键,将出现如下提示:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user