From 32749c7294c9ce5d434bb4d940187e483509a558 Mon Sep 17 00:00:00 2001 From: ushastoe <40743392+krolchonok@users.noreply.github.com> Date: Sat, 13 Dec 2025 16:47:23 +0300 Subject: [PATCH] Add micro editor configuration with syntax highlighting --- .microrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .microrc diff --git a/.microrc b/.microrc new file mode 100644 index 0000000..a9c92e3 --- /dev/null +++ b/.microrc @@ -0,0 +1,16 @@ +# Micro editor configuration for syntax highlighting + +# Colorscheme (optional) +set colorscheme default + +# Tab settings +set tabsize 4 +set expandtab true + +# Behavior +set autoindent true +set softwrap true +set rmtrailingws true + +# Enable syntax highlighting +set syntaxhl true