summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-29 14:05:46 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-29 14:05:46 +0200
commite56ad93c23674f6677145a1f8933e02c807ba5d0 (patch)
tree9c073b000118d0d4c933f3010890d500ed277ab7 /lua/no-clown-fiesta/highlight-group/nvim-tree.lua
parent95805b36e4cb70b5c87cdc76e5bd384830a41cbe (diff)
Remove style field
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/nvim-tree.lua')
-rw-r--r--lua/no-clown-fiesta/highlight-group/nvim-tree.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/nvim-tree.lua b/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
index ffe7897..21cdc25 100644
--- a/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
+++ b/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
@@ -7,7 +7,7 @@ function M.highlight(palette)
NvimTreeNormal = { fg = palette.light_gray, bg = palette.alt_bg },
NvimTreeVertSplit = { fg = palette.alt_bg, bg = palette.alt_bg },
NvimTreeFolderName = { fg = palette.white },
- NvimTreeOpenedFolderName = { fg = palette.white, style = "bold" },
+ NvimTreeOpenedFolderName = { fg = palette.white, bold = true },
NvimTreeEmptyFolderName = { fg = palette.medium_gray },
NvimTreeGitIgnored = { fg = palette.medium_gray },
NvimTreeImageFile = { fg = palette.light_gray },
@@ -22,7 +22,7 @@ function M.highlight(palette)
NvimTreeGitMerge = { fg = palette.info_yellow },
NvimTreeGitDirty = { fg = palette.info_yellow },
NvimTreeSymlink = { fg = palette.cyan },
- NvimTreeRootFolder = { fg = palette.fg, style = "bold" },
+ NvimTreeRootFolder = { fg = palette.fg, bold = true },
NvimTreeExecFile = { fg = palette.green },
NvimTreeStatusLine = { fg = palette.alt_bg, bg = palette.alt_bg },
NvimTreeStatusLineNC = { fg = palette.alt_bg, bg = palette.alt_bg },