diff options
author | aktersnurra <gustaf.rydholm@gmail.com> | 2022-07-29 17:51:29 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-29 17:54:41 +0200 |
commit | 4e2317da2b50a30fb64024d7d59f94881e27a609 (patch) | |
tree | 5731a5f2c934fe2da5b79aef24f708590af67ae0 /lua/no-clown-fiesta/NvimTree.lua | |
parent | da502c2571b710791b29c82a77cbe577791b14df (diff) |
Update configuration api (#5)
* Refactor
* Fix opts
* Fix plugin typos
* Update readme
BREAKING CHANGE: Configuration api updated.
Diffstat (limited to 'lua/no-clown-fiesta/NvimTree.lua')
-rw-r--r-- | lua/no-clown-fiesta/NvimTree.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lua/no-clown-fiesta/NvimTree.lua b/lua/no-clown-fiesta/NvimTree.lua deleted file mode 100644 index 7094dc5..0000000 --- a/lua/no-clown-fiesta/NvimTree.lua +++ /dev/null @@ -1,34 +0,0 @@ -local NvimTree = { - NvimTreeFolderIcon = { fg = C.white }, - NvimTreeIndentMarker = { fg = C.alt_bg }, - NvimTreeNormal = { fg = C.light_gray, bg = C.alt_bg }, - NvimTreeVertSplit = { fg = C.alt_bg, bg = C.alt_bg }, - NvimTreeFolderName = { fg = C.white }, - NvimTreeOpenedFolderName = { fg = C.white, style = "bold,italic" }, - NvimTreeEmptyFolderName = { fg = C.medium_gray, style = "italic" }, - NvimTreeGitIgnored = { fg = C.medium_gray, style = "italic" }, - NvimTreeImageFile = { fg = C.light_gray }, - NvimTreeSpecialFile = { fg = C.orange }, - NvimTreeEndOfBuffer = { fg = C.alt_bg }, - NvimTreeCursorLine = { bg = C.accent }, - NvimTreeGitignoreIcon = { fg = C.red }, - NvimTreeGitStaged = { fg = C.cyan }, - NvimTreeGitNew = { fg = C.cyan }, - NvimTreeGitRenamed = { fg = C.cyan }, - NvimTreeGitDeleted = { fg = C.sign_delete }, - NvimTreeGitMerge = { fg = C.info_yellow }, - NvimTreeGitDirty = { fg = C.info_yellow }, - NvimTreeSymlink = { fg = C.cyan }, - NvimTreeRootFolder = { fg = C.fg, style = "bold" }, - NvimTreeExecFile = { fg = C.green }, - NvimTreeStatusLine = { fg = C.alt_bg, bg = C.alt_bg }, - NvimTreeStatusLineNC = { fg = C.alt_bg, bg = C.alt_bg }, - NvimTreeStatusNC = { fg = C.alt_bg, bg = C.alt_bg }, - NvimTreeLspDiagnosticsErr = { fg = C.error_red }, - NvimTreeLspDiagnosticsError = { fg = C.error_red }, - NvimTreeLspDiagnosticsHint = { fg = C.hint_blue }, - NvimTreeLspDiagnosticsInformation = { fg = C.info_yellow }, - NvimTreeLspDiagnosticsWarning = { fg = C.warning_orange }, -} - -return NvimTree |