Configuration

You can modify the config.lua file to change the appearance and behavior of notifications, or even add custom notification types.

General Settings

JJ = {
    Types = {
        success = {
            icon = {"fas", "fa-check-circle"},
            highlightColor = "#28a745"
        },
        error = {
            icon = {"fas", "fa-times-circle"},
            highlightColor = "#dc3545"
        },
        warning = {
            icon = {"fas", "fa-exclamation-circle"},
            highlightColor = "#ffc107"
        },
        info = {
            icon = {"fas", "fa-info-circle"},
            highlightColor = "#17a2b8"
        },
        neutral = {
            icon = {"fas", "fa-bell"},
            highlightColor = "#6c757d"
        }
    }
}