mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
Fix README.md's wrong indent, add align to icons
This commit is contained in:
parent
434b7d3edd
commit
ec9239cbaa
1 changed files with 21 additions and 21 deletions
42
README.md
42
README.md
|
@ -150,7 +150,7 @@ When `[2]` is `nil`, then the real mapping has to be created by the `config()` f
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("neo-tree").setup()
|
require("neo-tree").setup()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -314,17 +314,17 @@ return {
|
||||||
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
|
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
|
||||||
border = "none",
|
border = "none",
|
||||||
icons = {
|
icons = {
|
||||||
cmd = " ",
|
cmd = " ",
|
||||||
config = "",
|
config = " ",
|
||||||
event = "",
|
event = " ",
|
||||||
ft = " ",
|
ft = " ",
|
||||||
init = " ",
|
init = " ",
|
||||||
keys = " ",
|
keys = " ",
|
||||||
plugin = " ",
|
plugin = " ",
|
||||||
runtime = " ",
|
runtime = " ",
|
||||||
source = " ",
|
source = " ",
|
||||||
start = "",
|
start = " ",
|
||||||
task = "✔ ",
|
task = "✔ ",
|
||||||
},
|
},
|
||||||
throttle = 20, -- how frequently should the ui process render events
|
throttle = 20, -- how frequently should the ui process render events
|
||||||
custom_keys = {
|
custom_keys = {
|
||||||
|
@ -423,17 +423,17 @@ return {
|
||||||
{
|
{
|
||||||
ui = {
|
ui = {
|
||||||
icons = {
|
icons = {
|
||||||
cmd = "⌘",
|
cmd = "⌘",
|
||||||
config = "🛠",
|
config = "🛠",
|
||||||
event = "📅",
|
event = "📅",
|
||||||
ft = "📂",
|
ft = "📂",
|
||||||
init = "⚙",
|
init = "⚙",
|
||||||
keys = "🗝",
|
keys = "🗝",
|
||||||
plugin = "🔌",
|
plugin = "🔌",
|
||||||
runtime = "💻",
|
runtime = "💻",
|
||||||
source = "📄",
|
source = "📄",
|
||||||
start = "🚀",
|
start = "🚀",
|
||||||
task = "📌",
|
task = "📌",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue