Browse Source

👌 IMPROVE: add colorscheme zephyr

pull/93/head
Xin.Chen 3 years ago
parent
commit
f27f896197
  1. 21
      docs/colorscheme.md
  2. BIN
      docs/imgs/colorscheme4.png
  3. 2
      init.vim
  4. 8
      lua/plugins.lua

21
docs/colorscheme.md

@ -76,6 +76,27 @@ colorscheme nord
<img src="./imgs/colorscheme3.png" width="850">
## zephyr-nvim 配色
再增加一个 [zephyr-nvim](https://github.com/glepnir/zephyr-nvim) 配色
修改 `lua/plugins.lua` 增加
```lua
use 'glepnir/zephyr-nvim'`
```
`:wq` 保存退出,重新打开后运行 `:PackerSync`
安装成功后,修改 `init.vim`
```vim
set background=dark
colorscheme zephyr
```
<img src="./imgs/colorscheme4.png" width="850">
本章结束,如果你有更漂亮的皮肤推荐,欢迎留言告诉我。
下一章开始会介绍一些常用的插件。

BIN
docs/imgs/colorscheme4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

2
init.vim

@ -7,7 +7,7 @@ lua require('keybindings')
" 皮肤设置
" https://github.com/ellisonleao/gruvbox.nvim
set background=dark " or light if you want light mode
colorscheme gruvbox
colorscheme zephyr
" 插件配置
lua require('plugin-config/which-key')

8
lua/plugins.lua

@ -38,8 +38,12 @@ return require('packer').startup(function()
use 'numToStr/Comment.nvim'
-- nvim-coloizer
use 'norcalli/nvim-colorizer.lua'
-- gruvbox theme
----------- colorscheme -----------
-- gruvbox
use {"ellisonleao/gruvbox.nvim", requires = {"rktjmp/lush.nvim"}}
-- zephyr
use 'glepnir/zephyr-nvim'
-- nord
use 'shaunsingh/nord.nvim'
end)

Loading…
Cancel
Save