Skip to content

Instantly share code, notes, and snippets.

@Trung-DV
Created April 19, 2026 02:58
Show Gist options
  • Select an option

  • Save Trung-DV/78d234f3e2fb8eefe5fbfba48816c350 to your computer and use it in GitHub Desktop.

Select an option

Save Trung-DV/78d234f3e2fb8eefe5fbfba48816c350 to your computer and use it in GitHub Desktop.
JetBrains IDEs config
<component name="github-copilot">
<option name="inlayTextColor" value="#28f0a0" />
</component>
<component name="UISettings">
<option name="compactTreeIndents" value="true" />
<option name="DISABLE_MNEMONICS" value="false" />
<option name="MAX_LOOKUP_LIST_HEIGHT" value="18" />
<option name="MAX_LOOKUP_WIDTH2" value="1177" />
<option name="NAVIGATION_BAR_LOCATION" value="TOP" />
<option name="REMEMBER_SIZE_FOR_EACH_TOOL_WINDOW_NEW_UI" value="true" />
<option name="SHOW_INPLACE_COMMENTS" value="true" />
<option name="SHOW_PREVIEW_IN_SEARCH_EVERYWHERE" value="true" />
<option name="SHOW_TOOL_WINDOW_NUMBERS" value="true" />
<option name="showTreeIndentGuides" value="true" />
<option name="UI_DENSITY" value="COMPACT" />
</component>
<component name="ChangesViewManager">
<option name="groupingKeys">
<option value="directory" />
</option>
</component>
//settingsSync/tools/Local.xml
<toolSet name="Local">
<tool name="Parse yml" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="yq" />
<option name="PARAMETERS" value="eval -C &quot;explode .&quot; $FilePath$" />
<option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
</exec>
</tool>
<tool name="Yaml to Json" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="yq" />
<option name="PARAMETERS" value="-C -o j $FilePathRelativeToProjectRoot$" />
<option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
</exec>
</tool>
<tool name="yq" description="yq for currrent file" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="yq" />
<option name="PARAMETERS" value="$Prompt$ $FilePath$" />
<option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
</exec>
</tool>
<tool name="jq" description="jq for currrent file" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="jq" />
<option name="PARAMETERS" value="$Prompt$ $FilePath$" />
<option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
</exec>
</tool>
</toolSet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment