Guest User

Untitled

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