-
Notifications
You must be signed in to change notification settings - Fork 20
Atom
Gabor Szarnyas edited this page Oct 31, 2022
·
12 revisions
- Remove the thin vertical line: disable the
wrap-guide
- Highlighting can hide misspelled word markers:
-
https://github.com/atom/spell-check/issues/81#issuecomment-142948600
-
Add the following to your stylesheet:
// Spell-check highlight has z-index -1 which makes it disappear under cursor-line atom-text-editor::shadow .spell-check-misspelling .region { z-index: 0; }
-
You may need to restart Atom or reload the window through the Developer menu.
-
If you cannot type [
and {
because the default key bindings already use them:
-
Install https://atom.io/packages/keyboard-localization package and select
HU_hu
in package settings -
Alternatively, edit your keymap:
- open your keymap file (
keymap.cson
) throughFile
,Keymap...
- add the following to the end:
'.workspace .editor': 'ctrl-alt-f': 'unset!' 'ctrl-alt-b': 'unset!' '.platform-win32, .platform-linux': 'ctrl-alt-f': 'unset!'
- open your keymap file (
Press Ctrl + Shift + P, Settings, click Open Config Folder and open the config.cson
file.
"*":
[...]
"tree-view":
showOnRightSide: false
To make Atom the default text editor instead of Gedit, you have to change the corresponding entry, and also throw out the other editors, such as xed and pluma.
sudo sed -i 's/gedit.desktop/atom.desktop/g' /usr/share/applications/defaults.list
sudo sed -i 's/xed.desktop;//g' /usr/share/applications/defaults.list
sudo sed -i 's/;xed.desktop//g' /usr/share/applications/defaults.list
sudo sed -i 's/pluma.desktop;//g' /usr/share/applications/defaults.list
sudo sed -i 's/;pluma.desktop//g' /usr/share/applications/defaults.list