mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim/lua/user/icons.lua: change from "git" to "vcs" to make it more general
This commit is contained in:
parent
1a4614c86c
commit
87de16407b
1 changed files with 7 additions and 4 deletions
|
|
@ -26,8 +26,8 @@ local iconset = {
|
||||||
|
|
||||||
star = "★",
|
star = "★",
|
||||||
ignored = "◌",
|
ignored = "◌",
|
||||||
git = {
|
vcs = {
|
||||||
merge = "",
|
branch = "",
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Arrows
|
-- Arrows
|
||||||
|
|
@ -179,6 +179,9 @@ return {
|
||||||
delete = iconset.caret.right,
|
delete = iconset.caret.right,
|
||||||
untracked = iconset.box.vertical_line_thick,
|
untracked = iconset.box.vertical_line_thick,
|
||||||
},
|
},
|
||||||
|
vcs = {
|
||||||
|
branch = iconset.vcs.branch,
|
||||||
|
},
|
||||||
gitsigns = {
|
gitsigns = {
|
||||||
-- Change type
|
-- Change type
|
||||||
added = iconset.circle,
|
added = iconset.circle,
|
||||||
|
|
@ -190,8 +193,8 @@ return {
|
||||||
ignored = iconset.ignored,
|
ignored = iconset.ignored,
|
||||||
unstaged = iconset.circle,
|
unstaged = iconset.circle,
|
||||||
staged = iconset.circle,
|
staged = iconset.circle,
|
||||||
conflict = iconset.git.merge,
|
conflict = iconset.vcs.branch,
|
||||||
unmerged = iconset.git.merge,
|
unmerged = iconset.vcs.branch,
|
||||||
},
|
},
|
||||||
todo = {
|
todo = {
|
||||||
default = iconset.exclamation_circle,
|
default = iconset.exclamation_circle,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue