mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24: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 = "★",
|
||||
ignored = "◌",
|
||||
git = {
|
||||
merge = "",
|
||||
vcs = {
|
||||
branch = "",
|
||||
},
|
||||
|
||||
-- Arrows
|
||||
|
|
@ -179,6 +179,9 @@ return {
|
|||
delete = iconset.caret.right,
|
||||
untracked = iconset.box.vertical_line_thick,
|
||||
},
|
||||
vcs = {
|
||||
branch = iconset.vcs.branch,
|
||||
},
|
||||
gitsigns = {
|
||||
-- Change type
|
||||
added = iconset.circle,
|
||||
|
|
@ -190,8 +193,8 @@ return {
|
|||
ignored = iconset.ignored,
|
||||
unstaged = iconset.circle,
|
||||
staged = iconset.circle,
|
||||
conflict = iconset.git.merge,
|
||||
unmerged = iconset.git.merge,
|
||||
conflict = iconset.vcs.branch,
|
||||
unmerged = iconset.vcs.branch,
|
||||
},
|
||||
todo = {
|
||||
default = iconset.exclamation_circle,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue