···11-# Neovim as a WordProcessor
11+# Neovim as a WordProcessor for Micro Journal (Debian, tty, low power)
2233This config is Neovim configured to act as a classical wordprocessor to write text and especially markdown.
445566-77-### Zen Mode
88-
99-1010-> **Note**: Activate `zen-mode` with `leader+z` to get into the focus mode. This will center text, hide tmux when active, and many more.
1111-### Default with Outline
1212-
1313-146### Micro Journal
157This markdown optimized config will be used on a [Micro Journal](https://github.com/unkyulee/micro-journal) device, a modern distraction-free type writer.
168179
181019112020-## Font
2121-I was searching for a font for writing and reading optimized, but still compatible with the terminal (mono-space). As I use Iosevka already for programming, I am trying **Iosevka Etoiole**.
2222-2323-Install
2424-```sh
2525-# Install Iosevka Etoile Font for Terminal Writing
2626-2727-# 1. Install required tools
2828-sudo apt update
2929-sudo apt install curl jq unzip
3030-3131-# 2. Create temporary directory and move to it
3232-mkdir -p ~/temp/fonts && cd ~/temp/fonts
3333-3434-# 3. Download latest Iosevka Etoile package
3535-curl -s 'https://api.github.com/repos/be5invis/Iosevka/releases/latest' | \
3636- jq -r ".assets[] | .browser_download_url" | \
3737- grep PkgTTC-IosevkaEtoile | \
3838- xargs -n 1 curl -L -O --fail --silent --show-error
3939-4040-# 4. Extract the font files
4141-unzip PkgTTC-IosevkaEtoile-*.zip
4242-4343-# 5. Create font directory (user-level installation)
4444-mkdir -p ~/.local/share/fonts/iosevka-etoile
4545-4646-# 6. Copy font files to your fonts directory
4747-cp ttc/*.ttc ~/.local/share/fonts/iosevka-etoile/
4848-4949-# 7. Update the font cache
5050-sudo fc-cache -f -v
5151-5252-# 8. Verify installation (should show Iosevka in the output)
5353-fc-list | grep Iosevka
5454-5555-# 9. Clean up temporary files
5656-cd ~
5757-rm -rf ~/temp/fonts
5858-```
5959-6060-6161-### Using in Terminal
6262-- Open your terminal preferences
6363-- Select "Iosevka Etoile" from the font dropdown
6464-- Adjust the size to your preference (recommended: 12-14pt)
6565-### Why Iosevka Etoile?
6666-Iosevka Etoile offers:
6767-6868-- Serif-inspired letterforms that are easy on the eyes for long-form writing
6969-- Terminal compatibility with monospaced alignment
7070-- Narrow width allowing more text on screen
7171-- Elegant aesthetic while maintaining technical requirements
7272-7373-Alternative would be **Iosekvka Aile**.