1# Use ${idea.home.path} macro to specify location relative to IDE installation home.
2# Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value.
3# Note for Windows users: please make sure you're using forward slashes (e.g. c:/idea/system).
4#---------------------------------------------------------------------
5# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
6#---------------------------------------------------------------------
7idea.config.path=${SYSUI_STUDIO_SETTINGS_DIR}/config
8#---------------------------------------------------------------------
9# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
10#---------------------------------------------------------------------
11idea.system.path=${SYSUI_STUDIO_SETTINGS_DIR}/system
12#---------------------------------------------------------------------
13# Uncomment this option if you want to customize path to IDE log folder. Make sure you're using forward slashes.
14#---------------------------------------------------------------------
15idea.log.path=${SYSUI_STUDIO_SETTINGS_DIR}/log
16#---------------------------------------------------------------------
17# Uncomment this option if you want to customize path to IDE plugins folder. Make sure you're using forward slashes.
18#---------------------------------------------------------------------
19idea.plugins.path=${SYSUI_STUDIO_SETTINGS_DIR}/plugins
20#---------------------------------------------------------------------
21# Disable first run wizard as we use out own sdk
22#---------------------------------------------------------------------
23disable.android.first.run=true
24#---------------------------------------------------------------------
25# Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes.
26#---------------------------------------------------------------------
27# idea.plugins.path=${idea.config.path}/plugins
28#---------------------------------------------------------------------
29# Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
30#---------------------------------------------------------------------
31# idea.log.path=${idea.system.path}/log
32#---------------------------------------------------------------------
33# Maximum file size (kilobytes) IDE should provide code assistance for.
34# The larger file is the slower its editor works and higher overall system memory requirements are
35# if code assistance is enabled. Remove this property or set to very large number if you need
36# code assistance for any files available regardless their size.
37#---------------------------------------------------------------------
38idea.max.intellisense.filesize=2500
39#---------------------------------------------------------------------
40# Maximum file size (kilobytes) IDE is able to open.
41#---------------------------------------------------------------------
42idea.max.content.load.filesize=20000
43#---------------------------------------------------------------------
44# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
45# Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
46#---------------------------------------------------------------------
47idea.cycle.buffer.size=1024
48#---------------------------------------------------------------------
49# Configure if a special launcher should be used when running processes from within IDE.
50# Using Launcher enables "soft exit" and "thread dump" features
51#---------------------------------------------------------------------
52idea.no.launcher=false
53#---------------------------------------------------------------------
54# To avoid too long classpath
55#---------------------------------------------------------------------
56idea.dynamic.classpath=false
57#---------------------------------------------------------------------
58# Uncomment this property to prevent IDE from throwing ProcessCanceledException when user activity
59# detected. This option is only useful for plugin developers, while debugging PSI related activities
60# performed in background error analysis thread.
61# DO NOT UNCOMMENT THIS UNLESS YOU'RE DEBUGGING IDE ITSELF. Significant slowdowns and lockups will happen otherwise.
62#---------------------------------------------------------------------
63#idea.ProcessCanceledException=disabled
64#---------------------------------------------------------------------
65# There are two possible values of idea.popup.weight property: "heavy" and "medium".
66# If you have WM configured as "Focus follows mouse with Auto Raise" then you have to
67# set this property to "medium". It prevents problems with popup menus on some
68# configurations.
69#---------------------------------------------------------------------
70idea.popup.weight=heavy
71#---------------------------------------------------------------------
72# Removing this property may lead to editor performance degradation under Windows.
73#---------------------------------------------------------------------
74sun.java2d.d3d=false
75#---------------------------------------------------------------------
76# Set swing.bufferPerWindow=false to workaround a slow scrolling in JDK6 (see IDEA-35883),
77# But this may lead to performance degradation in JDK8, because it disables a double buffering,
78# which is needed to eliminate tearing on blit-accelerated scrolling and to restore
79# a frame buffer content without the usual repainting, even when the EDT is blocked.
80#---------------------------------------------------------------------
81swing.bufferPerWindow=true
82#---------------------------------------------------------------------
83# Removing this property may lead to editor performance degradation under X Window.
84#---------------------------------------------------------------------
85sun.java2d.pmoffscreen=false
86#---------------------------------------------------------------------
87# Enables HiDPI support in JBRE
88#---------------------------------------------------------------------
89sun.java2d.uiScale.enabled=true
90#---------------------------------------------------------------------
91# Applicable to the Swing text components displaying HTML (except JEditorPane).
92# Rebases CSS size map depending on the component's font size to let relative
93# font size values (smaller, larger) scale properly. JBRE only.
94#---------------------------------------------------------------------
95javax.swing.rebaseCssSizeMap=true
96#---------------------------------------------------------------------
97# Workaround to avoid long hangs while accessing clipboard under Mac OS X.
98#---------------------------------------------------------------------
99#ide.mac.useNativeClipboard=True
100#---------------------------------------------------------------------
101# Maximum size (kilobytes) IDEA will load for showing past file contents -
102# in Show Diff or when calculating Digest Diff
103#---------------------------------------------------------------------
104#idea.max.vcs.loaded.size.kb=20480
105#---------------------------------------------------------------------
106# IDEA file chooser peeks inside directories to detect whether they contain a valid project
107# (to mark such directories with a corresponding icon).
108# Uncommenting the option prevents this behavior outside of user home directory.
109#---------------------------------------------------------------------
110#idea.chooser.lookup.for.project.dirs=false
111#-----------------------------------------------------------------------
112# Experimental option that does a number of things to make truly smooth scrolling possible:
113#
114# * Enables hardware-accelerated scrolling.
115#     Blit-acceleration copies as much of the rendered area as possible and then repaints only newly exposed region.
116#     This helps to improve scrolling performance and to reduce CPU usage (especially if drawing is compute-intensive).
117#
118# * Enables "true double buffering".
119#     True double buffering is needed to eliminate tearing on blit-accelerated scrolling and to restore
120#     frame buffer content without the usual repainting, even when the EDT is blocked.
121#
122# * Adds "idea.true.smooth.scrolling.debug" option.
123#     Checks whether blit-accelerated scrolling is feasible, and if so, checks whether true double buffering is available.
124#
125# * Enables handling of high-precision mouse wheel events.
126#     Although Java 7 introduced MouseWheelEven.getPreciseWheelRotation() method, JScrollPane doesn't use it so far.
127#     Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
128#     Ideally, we need to patch the runtime (on Windows, Linux and Mac OS) to improve handling of the fine-grained input data.
129#     This feature can be toggled via "idea.true.smooth.scrolling.high.precision" option.
130#
131# * Enables handling of pixel-perfect scrolling events.
132#     Currently this mode is available only under Mac OS with JetBrains Runtime.
133#     This feature can be toggled via "idea.true.smooth.scrolling.pixel.perfect" option.
134#
135# * Enables interpolation of scrolling input (scrollbar, mouse wheel, touchpad, keys, etc).
136#     Smooths input which lacks both spatial and temporal resolution, performs the rendering asynchronously.
137#     Depends on the Editor / General / Smooth Scrolling setting, remote desktop detection and power save mode state.
138#     The feature can be tweaked using the following options:
139#       "idea.true.smooth.scrolling.interpolation" - the main switch
140#       "idea.true.smooth.scrolling.interpolation.scrollbar" - scrollbar interpolation
141#       "idea.true.smooth.scrolling.interpolation.scrollbar.delay" - initial delay for scrollbar interpolation (ms)
142#       "idea.true.smooth.scrolling.interpolation.mouse.wheel" - mouse wheel / touchpad interpolation
143#       "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.min" - minimum initial delay for mouse wheel interpolation (ms)
144#       "idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.max" - maximum initial delay for mouse wheel interpolation (ms)
145#       "idea.true.smooth.scrolling.interpolation.precision.touchpad" - precision touchpad interpolation
146#       "idea.true.smooth.scrolling.interpolation.precision.touchpad.delay" - initial delay for precision touchpad interpolation (ms)
147#       "idea.true.smooth.scrolling.interpolation.other" - interpolation of other input sources
148#       "idea.true.smooth.scrolling.interpolation.other.delay" - initial delay for other input source interpolation (ms)
149#
150# * Adds on-demand horizontal scrollbar in editor.
151#     The horizontal scrollbar is shown only when it's actually needed for currently visible content.
152#     This helps to save editor space and to prevent occasional horizontal "jitter" on vertical touchpad scrolling.
153#     This feature can be toggled via "idea.true.smooth.scrolling.dynamic.scrollbars" option.
154#-----------------------------------------------------------------------
155#idea.true.smooth.scrolling=true
156#---------------------------------------------------------------------
157# IDEA can copy library .jar files to prevent their locking.
158# By default this behavior is enabled on Windows and disabled on other platforms.
159# Uncomment this property to override.
160#---------------------------------------------------------------------
161# idea.jars.nocopy=false
162#---------------------------------------------------------------------
163# The VM option value to be used to start a JVM in debug mode.
164# Some JREs define it in a different way (-XXdebug in Oracle VM)
165#---------------------------------------------------------------------
166idea.xdebug.key=-Xdebug
167#-----------------------------------------------------------------------
168# Change to 'disabled' if you don't want to receive instant visual notifications
169# about fatal errors that happen to an IDE or plugins installed.
170#-----------------------------------------------------------------------
171idea.fatal.error.notification=enabled
172# Stop the IDE from notifying the user about IDE updates
173idea.updates.url=file:///${SYSUI_STUDIO_SETTINGS_DIR}/updates.xml
174