Created
April 10, 2026 09:27
-
-
Save Conobi/502bc1318626036172c4080a9ba59abd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # --- Display --- | |
| set linenumbers | |
| set constantshow | |
| set guidestripe 79 | |
| set matchbrackets "(<[{)>]}" | |
| set titlecolor ,grey | |
| set statuscolor ,grey | |
| set stripecolor ,black | |
| set numbercolor white,black | |
| # --- Editing --- | |
| set tabsize 4 | |
| set tabstospaces | |
| set autoindent | |
| set trimblanks | |
| # --- Search --- | |
| set casesensitive | |
| set regexp | |
| # --- UX --- | |
| set mouse | |
| set smarthome | |
| set zap | |
| set afterends | |
| set wordchars "_" | |
| # --- Backups --- | |
| set backup | |
| set backupdir "~/.nano-backups" | |
| set locking | |
| # --- Softwrap --- | |
| set softwrap | |
| set atblanks | |
| # --- Keybindings --- | |
| bind ^S savefile main | |
| bind ^Z undo main | |
| bind ^Y redo main | |
| # --- Syntax highlighting --- | |
| include "/usr/share/nano/*.nanorc" | |
| include "/usr/share/nano-syntax-highlighting/*.nanorc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment