Skip to content

Commit

Permalink
doc: correct table for git symbols to be within git_status table (#1278)
Browse files Browse the repository at this point in the history
  • Loading branch information
aedificatio authored Dec 31, 2023
1 parent 953313e commit 584922d
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions doc/neo-tree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1040,18 +1040,20 @@ the following properties:
>lua
require("neo-tree").setup({
default_component_configs = {
symbols = {
-- Change type
added = "✚",
deleted = "✖",
modified = "",
renamed = "󰁕",
-- Status type
untracked = "",
ignored = "",
unstaged = "󰄱",
staged = "",
conflict = "",
git_status = {
symbols = {
-- Change type
added = "✚",
deleted = "✖",
modified = "",
renamed = "󰁕",
-- Status type
untracked = "",
ignored = "",
unstaged = "󰄱",
staged = "",
conflict = "",
}
}
}
})
Expand All @@ -1073,18 +1075,20 @@ The following config will remove those change type symbols:
>lua
require("neo-tree").setup({
default_component_configs = {
symbols = {
-- Change type
added = "",
deleted = "",
modified = "",
renamed = "",
-- Status type
untracked = "",
ignored = "",
unstaged = "󰄱",
staged = "",
conflict = "",
git_status = {
symbols = {
-- Change type
added = "",
deleted = "",
modified = "",
renamed = "",
-- Status type
untracked = "",
ignored = "",
unstaged = "󰄱",
staged = "",
conflict = "",
}
}
}
})
Expand Down

0 comments on commit 584922d

Please sign in to comment.