mirror of https://github.com/folke/lazy.nvim.git
docs: added config example when not using a Nerd Font
This commit is contained in:
parent
713dcb6901
commit
980cfa95f3
26
README.md
26
README.md
|
@ -28,6 +28,7 @@
|
||||||
- Neovim >= **0.8.0** (needs to be built with **LuaJIT**)
|
- Neovim >= **0.8.0** (needs to be built with **LuaJIT**)
|
||||||
- Built for **Linux** and **MacOS**
|
- Built for **Linux** and **MacOS**
|
||||||
- Git >= **2.19.0** (for partial clones support)
|
- Git >= **2.19.0** (for partial clones support)
|
||||||
|
- a [Nerd Font](https://www.nerdfonts.com/) **_(optional)_**
|
||||||
|
|
||||||
## 📦 Installation
|
## 📦 Installation
|
||||||
|
|
||||||
|
@ -331,6 +332,31 @@ return {
|
||||||
|
|
||||||
<!-- config:end -->
|
<!-- config:end -->
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>If you don't want to use a Nerd Font, you can replace the icons with Unicode symbols.</summary>
|
||||||
|
|
||||||
|
```lua
|
||||||
|
{
|
||||||
|
ui = {
|
||||||
|
icons = {
|
||||||
|
cmd = "⌘",
|
||||||
|
config = "🛠",
|
||||||
|
event = "📅",
|
||||||
|
ft = "📂",
|
||||||
|
init = "⚙",
|
||||||
|
keys = "🗝",
|
||||||
|
plugin = "🔌",
|
||||||
|
runtime = "💻",
|
||||||
|
source = "📄",
|
||||||
|
start = "🚀",
|
||||||
|
task = "📌",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
## 🚀 Usage
|
## 🚀 Usage
|
||||||
|
|
||||||
You can manage all your plugins with the main `:Lazy` command.
|
You can manage all your plugins with the main `:Lazy` command.
|
||||||
|
|
2
TODO.md
2
TODO.md
|
@ -57,6 +57,6 @@
|
||||||
- [ ] Why are personal dotfiles used as examples? Dotfiles change all the time,
|
- [ ] Why are personal dotfiles used as examples? Dotfiles change all the time,
|
||||||
there's no guarantee this will be relevant or even exist in two years.
|
there's no guarantee this will be relevant or even exist in two years.
|
||||||
- [ ] What's the difference between lazy-loading and verylazy-loading?
|
- [ ] What's the difference between lazy-loading and verylazy-loading?
|
||||||
- [ ] Most emojis in "Configuration" aren't shown for me.
|
- [x] Most emojis in "Configuration" aren't shown for me.
|
||||||
- [x] add section on how to uninstall
|
- [x] add section on how to uninstall
|
||||||
- [x] add `:Packadd` command or something similar
|
- [x] add `:Packadd` command or something similar
|
||||||
|
|
Loading…
Reference in New Issue