{
    "themes" : [ 
        "ambiance", "chaos", "chrome", "clouds", "clouds_midnight", 
        "cobalt", "crimson_editor", "dawn", "dracula", "dreamweaver", 
        "eclipse", "github", "gob", "gruvbox", "idle_fingers", "iplastic", 
        "katzenmilch", "kr_theme", "kuroir", "merbivore", "merbivore_soft", 
        "mono_industrial", "monokai", "nord_dark", "pastel_on_dark", 
        "solarized_dark", "solarized_light", "sqlserver", "terminal", 
        "textmate", "tomorrow", "tomorrow_night", "tomorrow_night_blue", 
        "tomorrow_night_bright", "tomorrow_night_eighties", "twilight", 
        "vibrant_ink", "xcode" 
    ],
    
    "mode" : ["light", "dark"],
    
    "terminal-position" : [ "left", "right", "up", "down"],

    "command" : {
        "clean" : "mingw32-make clean && del makefile",
        "compile" : "mingw32-make" ,
        "run" : "start mingw32-make run"
    },

    "language" : {
        "Choose a language" : {
            "extension" : ".txt",
            "highlighter" : "text",
            "example" : "\n\t\t\tWelcome to Tiny Editor\n\t* Press CTRL + N to create a new file\n\t* Press CTRL + O to open a existing file\n\t* Press CTRL + W to open settings\n",
            "compile" : ""
        },
        "C++" : {
            "extension" : ".cpp",
            "highlighter" : "c_cpp",
            "example" : "#include<iostream>\nusing namespace std;\nint main(){\n\tcout<<\"Thank you very much for using Tiny Editor\"<<endl;\n}\n",
            "compiler" : "g++",
            "runner" : ""
        },

        "Java" : {
            "extension" : ".java",
            "highlighter" : "java",
            "example" : "public class Test{\n\tpublic static void main(String[] args){\n\t\tSystem.out.println(\"Thank you very much for using Tiny Editor\");\n\t}\n}\n",
            "compiler" : "javac",
            "runner" : "java "
        },

        "Python" : {
            "extension" : ".py",
            "highlighter" : "python",
            "example" : "print(\"Thank you very much for using Tiny Editor\")\n",
            "compiler" : "",
            "runner" : "python "
        }

    }
}