- Nerd Fonts.
- telescope.nvim (optional).
- nvim-tree.lua (optional).
{
"nilsojunior/colours.nvim",
}
-- Or with dependencies
{
"nilsojunior/colours.nvim",
dependencies = {
"nvim-telescope/telescope.nvim",
"nvim-tree/nvim-tree.lua",
},
}
You can change the icon and the highlight colours.
require("colours").setup() -- Default config
-- Changing defaults
require("colours").setup({
icon = " ",
colours = {
foreground = "#4881db",
background = "#abb5c4",
},
})
Highlight current file.
Highlight arrow on opened folders.