diff options
author | Squibid <me@zacharyscheiman.com> | 2023-04-03 09:34:31 +0000 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-04-03 09:34:31 +0000 |
commit | 7c5d3eff786bef884022cc813448bb085ba4eccd (patch) | |
tree | d3f936c71555e259318116272e9e478954fa5eeb /lua/core/opts.lua | |
parent | 2da3e8642576b2b97544a94a91d16779914a3de1 (diff) | |
download | nvim-7c5d3eff786bef884022cc813448bb085ba4eccd.tar.gz nvim-7c5d3eff786bef884022cc813448bb085ba4eccd.tar.bz2 nvim-7c5d3eff786bef884022cc813448bb085ba4eccd.zip |
add tree file view, and modify scrollbarv1.0
Diffstat (limited to '')
-rw-r--r-- | lua/core/opts.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/core/opts.lua b/lua/core/opts.lua index 7e71954..75e8c38 100644 --- a/lua/core/opts.lua +++ b/lua/core/opts.lua @@ -208,3 +208,11 @@ a.nvim_set_hl(0, "TelescopeResultsTitle", { bg = colors.black4, a.nvim_set_hl(0, "TelescopeSelection", { bg = colors.black2 }) a.nvim_set_hl(0, "TelescopeSelectionCaret", { bg = colors.black2, fg = colors.orange, bold = true }) + +-- sfm (tree view stuff) +a.nvim_set_hl(0, "SFMGitStaged", { fg = colors.green }) +a.nvim_set_hl(0, "SFMGitUnstaged", { fg = colors.green }) +a.nvim_set_hl(0, "SFMGitRenamed", { fg = colors.purple }) +a.nvim_set_hl(0, "SFMGitNew", { fg = colors.orange }) +a.nvim_set_hl(0, "SFMGitDeleted", { fg = colors.red }) +a.nvim_set_hl(0, "SFMGitIgnored", { fg = colors.grey }) |