Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ left editor section

Print screen here

Is there any way to decrease the left side with numbers of IntelliJ IDE? It's way too big for me and takes away precious space of the screen. Wasn't able to find any settings for that. Also no hints from google.

like image 509
Yuriy Lipchey Avatar asked May 24 '26 06:05

Yuriy Lipchey


1 Answers

As already mentioned in the comments, you can't drag-drop or change a value easily so that the gutter is reduced in width. However, there are (as far as I can see) 3 things you can do to reduce (and actually almost eliminate) that whole section.

Starting with the least drastic one:

  1. Remove the gutter icons.

enter image description here

Go to File > Settings > Editor > General > Gutter Icons and at the top you can completely disable them. That will significantly reduce the gutter size and won't be a (huge) pain for coding since these icons are just "nice to have".

Now the gutter will look like this:

enter image description here

  1. A little bit more drastic is to remove the code-folding outlines.

enter image description here

Go to File > Settings > Editor > General > Code Folding and at the top remove the tick for code folding.

A very slight change, but at least something nonetheless:

enter image description here

  1. Lastly, the most drastic (to me at least) action is to remove the line numbers.

I don't think that any programmer enjoys not knowing on which line they are on, but it will remove the gutter almost completely

enter image description here

Go to the Appearance section and un-tick Show line numbers. And the result will be:

enter image description here

In this case, at least the line number and character position are given at the bottom right, if that is even worth something...

like image 85
mnestorov Avatar answered May 27 '26 13:05

mnestorov