プラットフォームアプリケーションで「エディタ」フォントを変更しようとしている場合(私はプラットフォームアプリケーションでいくつかのNBエディタを使用しています)、ここに方法があります。
org-netbeans-modules-editor-settings-CustomFontsColors.xml
次の内容のファイルを作成します。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontscolors PUBLIC "-//NetBeans//DTD Editor Fonts and Colors settings 1.1//EN" "http://www.netbeans.org/dtds/EditorFontsColors-1_1.dtd">
<fontscolors>
<fontcolor bgColor="white" foreColor="black" name="default">
<font name="Noto Serif CJK JP" size="15"/>
</fontcolor>
</fontscolors>
そして、layer.xmlファイルで、
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE filesystem PUBLIC "-//NetBeans//DTD Filesystem 1.2//EN" "http://www.netbeans.org/dtds/filesystem-1_2.dtd">
<filesystem>
<folder name="Editors">
<folder name="NetBeans">
<folder name="Defaults">
<file name="defaultColoring.xml" url="org-netbeans-modules-editor-settings-CustomFontsColors.xml"/>
</folder>
</folder>
</folder>
</filesystem>
それで全部です。
PS:ここでソースを確認することもできます