from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

86162

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->nano

Configuring the nano text editor


nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "goto line number".

Lets go ahead and configure it.

($:~)=> nano -w ~/.nanorc
# Use auto-indentation  
set autoindent

# Backup files to filename~
set backup

# Use cut to end of line with ^K by default
set cut

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Don't convert files from DOS/Mac format
set noconvert

# Don't follow symlinks when writing files
# set nofollow

# Don't display the help lists at the bottom of the screen
# set nohelp

# Don't wrap text at all
set nowrap

# Use smooth scrolling as the default
set smooth

# Use this spelling checker instead of the internal one. This option
# does not properly have a default value.
set speller "aspell -c"

# Allow nano to be suspended with ^Z
# set suspend

# Use this tab size instead of the default; it must be greater than 0
# set tabsize 8

# Save automatically on exit, don't prompt
# set tempfile

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Disallow file modification, why would you want this in an rc file? ;)
# set view

#Color Syntax Highlighting
syntax "c-file" "\.(c|h)$"
color red "\<[A-Z_]{2,}\>"
color green "\<(float|char|int|void|static|const|struct)\>"
color brightyellow "\<(if|while|do|else|case|switch)\>"
color brightcyan "^#( )*(define|include|ifn?def|endif|elif|else|if)"
color brightyellow "<[^= ]*>" ""(.|[^"])*""
color brightyellow start=""(\\.|[^\"])*\\( | )*$" end="^(\\.|[^\"])*""
color brightblue "//.*"
color brightblue start="/\*" end="\*/"

syntax "HTML" "\.html$"
color blue start="<" end=">"
color red "&[^; ]*;"

syntax "TeX" "\.tex$"
color green "\\.|\\[A-Za-z]*"
color magenta "[{}]"
color blue "%.*"

syntax "mutt"
color green "^>.*"

syntax "php" ".*/*.php$"
color brightwhite "\{|\}|\."
color red "('[^']*')"
color red "\"[^\"]*\""
color brightblue "(\$([[:alpha:]_]|->)*)"
color brightgreen "((\$(([[:alpha:]_0-9])+\->)+)[[:alpha:]_0-9]+\()"
color yellow " (if|else if|else|return|case|break)"
color yellow "\|\||\?|!|\||&&|=|;|\(|\)"
color red "false|true"
color brightwhite "[[:space:]]+debug|[[:space:]]+echo|\$this\->debug"
color cyan "//.*"
color cyan start="/\*" end="\*/"

syntax "groff" "\.ms$" "\.mm$" "\.me$" "\.tmac$" "^tmac." ".rof"
color cyan "^\.ds [^ ]*"
color cyan "^\.nr [^ ]*"
color brightmagenta "\\."
color brightmagenta "\\f."
color brightmagenta "\\f\(.."
color brightmagenta "\\s(\+|\-)?[0-9]"
color cyan "(\\|\\\\)n."
color cyan "(\\|\\\\)n\(.."
color cyan start="(\\|\\\\)n\[" end="]"
color brightgreen "^\. *[^ ]*"
color yellow "^\.\\\".*$"
color green "(\\|\\\\)\*."
color green "(\\|\\\\)\*\(.."
color green start="(\\|\\\\)\*\[" end="]"
color brightred "\\\(.."
color brightred start="\\\[" end="]"
color brightcyan "\\\\\$[1-9]"

syntax "perl" "\.p[lm]$"
color red "\<(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o
|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid
|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|
int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop
|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|
mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|st
udy|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\>"
color magenta "\<(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\>"
color cyan start="[$@%]" end="( |\\W|-)"
color yellow "".*"|qq\|.*\|"
color white "[sm]/.*/"
color white start="(^use| = new)" end=";"
color green "#.*"
color yellow start="<< 'STOP'" end="STOP"

syntax "Java source" "\.java$"
color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
color red "\<(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\>"
color red ""[^"]*""
color yellow "<(true|false|null)>"
color blue "//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color brightgreen,brightgreen "[ ]+$"

syntax "nanorc" "[\.]*nanorc$"
color white "^ *(set|unset).*$"
color cyan "^ *(set|unset) (autoindent|backup|const|cut|fill|keypad|multibuffer|noconvert|nofollow|nohelp|nowrap|operatingdir|preserve|quotestr|regexp|smooth|speller|suspend|tabsize|tempfile|historylog|view)"
color brightwhite "^ *syntax [^ ]*"
color brightblue "^ *set\>" "^ *unset\>" "^ *syntax\>"
color white "^ *color\>.*"
color yellow "^ *color (bright)?(white|black|red|blue|green|yellow|magenta|cyan)\>"
color magenta "^ *color\>"
color green "^#.*$"

syntax "bash" "\.sh$"
color brightblack "#.*"
color brightyellow "\(" "\)" "\{" "\}"
color red "\<[A-Z_]{2,}\>"
color red "[\$\*\'\`\|\=]"
color brightblue "\[.*\]"
color green "\<-e\>" "\<-d\>" "\<-f\>" "\<-r\>" "\<-g\>" "\<-u\>" "\<-u\>" "\<-w\>" "\<-x\>" "\<-L\>"
color green "\<-eq\>" "\<-ne\>" "\<-gt\>" "\<-lt\>" "\<-ge\>" "\<-le\>" "\<-s\>" "\<-n\>" "\<-z\>"
color blue "\" "\" "\" "\" "\" "\" "\" "\" "\"
color blue "\" "\" "\" "\" "\"
color brightwhite "\.*"


And thats it. You may want to read the /usr/share/doc/nano/nanorc.sample file for any other options you may want or change the color highlighting a bit.
rate this article:
current rating: average rating: 1.4 (58 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-06-22
gcc - 17.0.0_p20260621
Ebuild name:

sys-devel/gcc-17.0.0_p20260621

Description

The GNU Compiler Collection

Added to portage

2026-06-22

pkgcore - 0.12.35
Ebuild name:

sys-apps/pkgcore-0.12.35

Description

a framework for package management

Added to portage

2026-06-22

xfce4-settings - 4.21.2
Ebuild name:

xfce-base/xfce4-settings-4.21.2

Description

Configuration system for the Xfce desktop environment

Added to portage

2026-06-22

xfdesktop - 4.21.0
Ebuild name:

xfce-base/xfdesktop-4.21.0

Description

Desktop manager for the Xfce desktop environment

Added to portage

2026-06-22

2026-06-21
cereal - 1.3.2-r4
Ebuild name:

dev-libs/cereal-1.3.2-r4

Description

Header-only C++11 serialization library

Added to portage

2026-06-21

coverage - 7.14.2
Ebuild name:

dev-python/coverage-7.14.2

Description

Code coverage measurement for Python

Added to portage

2026-06-21

dash - 0.5.13.4-r2
Ebuild name:

app-shells/dash-0.5.13.4-r2

Description

Debian Almquist Shell

Added to portage

2026-06-21

eselect-pinentry - 0.7.5
Ebuild name:

app-eselect/eselect-pinentry-0.7.5

Description

Manage /usr/bin/pinentry symlink

Added to portage

2026-06-21

ffmpeg - 6.1.6
Ebuild name:

media-video/ffmpeg-6.1.6

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-06-21

ffmpeg-compat - 6.1.6
Ebuild name:

media-video/ffmpeg-compat-6.1.6

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-06-21

firefox - 152.0.1
Ebuild name:

www-client/firefox-152.0.1

Description

Firefox Web Browser

Added to portage

2026-06-21

firefox-bin - 152.0.1
Ebuild name:

www-client/firefox-bin-152.0.1

Description

Firefox Web Browser

Added to portage

2026-06-21

firefox-l10n - 152.0.1
Ebuild name:

www-client/firefox-l10n-152.0.1

Description

Firefox Web Browser's translation files

Added to portage

2026-06-21

freedroid - 1.9.1
Ebuild name:

games-rpg/freedroid-1.9.1

Description

The original Freedroid, a clone of the C64 classic Paradroid

Added to portage

2026-06-21

gcc - 16.1.1_p20260620
Ebuild name:

sys-devel/gcc-16.1.1_p20260620

Description

The GNU Compiler Collection

Added to portage

2026-06-21

gentoo-kernel-modprep - 6.1.176
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.1.176

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-06-21

gentoo-kernel-modprep - 6.12.94
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.94

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-06-21

gentoo-kernel-modprep - 6.18.36
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.36

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-06-21

gentoo-kernel-modprep - 6.6.143
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.143

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-06-21

global - 6.6.15
Ebuild name:

dev-util/global-6.6.15

Description

Tag system to find an object location in various sources

Added to portage

2026-06-21

jq - 1.8.2
Ebuild name:

app-misc/jq-1.8.2

Description

A lightweight and flexible command-line JSON processor

Added to portage

2026-06-21

kquickimageeditor - 0.6.2
Ebuild name:

media-libs/kquickimageeditor-0.6.2

Description

QtQuick components providing basic image editing capabilities

Added to portage

2026-06-21

lttng-modules - 2.14.6
Ebuild name:

dev-util/lttng-modules-2.14.6

Description

LTTng Kernel Tracer Modules

Added to portage

2026-06-21

lttng-tools - 2.14.2
Ebuild name:

dev-util/lttng-tools-2.14.2

Description

Linux Trace Toolkit - next generation

Added to portage

2026-06-21

mycli - 1.76.0
Ebuild name:

dev-db/mycli-1.76.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-06-21

naev - 0.13.5
Ebuild name:

games-strategy/naev-0.13.5

Description

2D space trading and combat game, in a similar vein to Escape Velocity

Added to portage

2026-06-21

openpgp-keys-jeremiegalarneau - 20260620
Ebuild name:

sec-keys/openpgp-keys-jeremiegalarneau-20260620

Description

OpenPGP keys used by Jérémie Galarneau

Added to portage

2026-06-21

openrc - 0.63.2
Ebuild name:

sys-apps/openrc-0.63.2

Description

OpenRC manages the services, startup and shutdown of a host

Added to portage

2026-06-21

postgrey - 1.37_p20230714-r2
Ebuild name:

mail-filter/postgrey-1.37_p20230714-r2

Description

Postgrey is a Postfix policy server implementing greylisting

Added to portage

2026-06-21

pysolfc - 3.6.0
Ebuild name:

games-board/pysolfc-3.6.0

Description

Exciting collection of more than 1000 solitaire card games

Added to portage

2026-06-21

python-engineio - 4.13.3
Ebuild name:

dev-python/python-engineio-4.13.3

Description

Python implementation of the Engine.IO realtime server

Added to portage

2026-06-21

qbs - 3.3.0
Ebuild name:

dev-util/qbs-3.3.0

Description

Modern build tool for software projects

Added to portage

2026-06-21

qxlsx - 1.5.1.1
Ebuild name:

dev-libs/qxlsx-1.5.1.1

Description

Excel file(*.xlsx) reader/writer library using Qt

Added to portage

2026-06-21

rapidyaml - 0.15.2
Ebuild name:

dev-cpp/rapidyaml-0.15.2

Description

Library to parse and emit YAML, and do it fast

Added to portage

2026-06-21

rq - 2.10.0
Ebuild name:

dev-python/rq-2.10.0

Description

Simple, lightweight library for creating and processing background jobs

Added to portage

2026-06-21

scummvm - 2026.3.0
Ebuild name:

games-engines/scummvm-2026.3.0

Description

Reimplementation of various game engines for adventures and role-pla

Added to portage

2026-06-21

shutter - 0.99.7
Ebuild name:

x11-misc/shutter-0.99.7

Description

Feature-rich screenshot program

Added to portage

2026-06-21

signxml - 5.0.0
Ebuild name:

dev-python/signxml-5.0.0

Description

Python XML Signature and XAdES library

Added to portage

2026-06-21

systemd - 261-r1
Ebuild name:

sys-apps/systemd-261-r1

Description

System and service manager for Linux

Added to portage

2026-06-21

testfixtures - 12.2.0
Ebuild name:

dev-python/testfixtures-12.2.0

Description

A collection of helpers and mock objects for unit tests and doc test

Added to portage

2026-06-21

tibs - 0.10.0
Ebuild name:

dev-python/tibs-0.10.0

Description

A sleek Python library for your binary data

Added to portage

2026-06-21

ueberzugpp - 2.9.10
Ebuild name:

media-gfx/ueberzugpp-2.9.10

Description

Drop in replacement for ueberzug written in C++

Added to portage

2026-06-21

vips - 8.18.3
Ebuild name:

media-libs/vips-8.18.3

Description

VIPS Image Processing Library

Added to portage

2026-06-21

virtualbox-modules - 7.2.10-r1
Ebuild name:

app-emulation/virtualbox-modules-7.2.10-r1

Description

Kernel Modules for Virtualbox

Added to portage

2026-06-21

wrapt - 2.2.2
Ebuild name:

dev-python/wrapt-2.2.2

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-06-21

yaspin - 3.4.0
Ebuild name:

dev-python/yaspin-3.4.0

Description

Yet Another Terminal Spinner

Added to portage

2026-06-21

zsnes - 2.1.1
Ebuild name:

games-emulation/zsnes-2.1.1

Description

Fork of the classic Super Nintendo emulator

Added to portage

2026-06-21

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 56.1 ms