You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim/lua/catppuccin/core/integrations/neotree.lua

27 lines
710 B
Lua

local M = {}
function M.get(cp)
local config = require("catppuccin.config").options
local neotree = config.integrations.neotree
local root_dir_color = cp.pink
if neotree.show_root then
root_dir_color = cp.blue
end
return {
NeoTreeDirectoryName = { fg = cp.blue },
NeoTreeDirectoryIcon = { fg = cp.blue },
NeoTreeNormal = { fg = cp.text, bg = neotree.transparent_panel and "NONE" or cp.base1 },
NeoTreeIndentMarker = { fg = cp.overlay0 },
NeoTreeRootName = { fg = root_dir_color, style = "bold" },
NeoTreeSymbolicLinkTarget = { fg = cp.pink },
NeoTreeGitModified = { fg = cp.yellow },
NeoTreeUntracked = { fg = cp.blue },
NeoTreeFileNameOpened = { fg = cp.pink },
}
end
return M