PINE64
gedit preferences? - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120)
+--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121)
+---- Forum: Mobian on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=139)
+---- Thread: gedit preferences? (/showthread.php?tid=15191)



gedit preferences? - Barugon - 10-26-2021

For whatever reason, editing preferences is not allowed in gedit on Mobian. How can I disable highlighting the current line (I actually can't see the text with the dark theme)? I would also like to disable line numbering as that's pretty dumb to have on for a text editor on a phone.


RE: gedit preferences? - beta-user - 10-27-2021

The new highlight color in gedit is terrible. You can disable the highlight with:
Code:
gsettings set org.gnome.gedit.preferences.editor highlight-current-line false

but I just changed the theme to "oblivion" (default is "tango") which has a better highlight color:
Code:
gsettings set org.gnome.gedit.preferences.editor scheme oblivion

To disable line numbers:
Code:
gsettings set org.gnome.gedit.preferences.editor display-line-numbers false

To find other settings:
Code:
gsettings list-recursively | grep gedit



RE: gedit preferences? - Barugon - 10-29-2021

Thanks @beta-user.