Last active
March 21, 2024 16:50
-
-
Save RanitManik/bb0e501d624a7482a3a37d06ca6068c9 to your computer and use it in GitHub Desktop.
my Nano text editor configuration file
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
| set tabsize 4 # Set tab size to 4 spaces | |
| set tabstospaces # Convert typed tabs to spaces | |
| set autoindent # Enable auto-indentation | |
| set trimblanks # Trim trailing whitespace on save | |
| set linenumbers # Display line numbers | |
| set constantshow # Show constant values for number lines | |
| set titlecolor white,red # Set title color to white on a red background | |
| set keycolor cyan # Set color for function keys to cyan | |
| set functioncolor cyan # Set color for function names to cyan | |
| set numbercolor yellow # Set color for line numbers to yellow | |
| set mouse # Enable mouse support | |
| include /usr/local/share/nano/*.nanorc # Include additional configuration files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment