lk/system/editors.md

28 lines
432 B
Markdown
Raw Normal View History

2022-01-16 18:20:39 +00:00
---
title: "$EDITOR"
2022-01-26 22:35:07 +00:00
tags: [ "Documentation", "System" ]
2022-01-16 18:20:39 +00:00
---
2022-01-26 22:35:07 +00:00
The System's default text editor can be defined within /etc/profile. It's given the variable `EDITOR`.
2020-01-02 17:44:54 +00:00
2022-01-28 17:08:30 +00:00
Add these lines to `/etc/profile.d/local.sh`:
2020-01-02 17:44:54 +00:00
```
export EDITOR=vim
export VISUAL=$EDITOR
```
Then reload that profile with:
```bash
source /etc/profile
```
2020-01-02 17:44:54 +00:00
If you want to ensure `nano` never appears again:
2020-01-02 17:44:54 +00:00
```bash
sudo ln -sf $(which vim) $(which nano)
```