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:

83073

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.5 (34 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-02-03
dropbox - 240.4.8609
Ebuild name:

net-misc/dropbox-240.4.8609

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-02-03

fsarchiver - 0.8.9
Ebuild name:

app-backup/fsarchiver-0.8.9

Description

Flexible filesystem archiver for backup and deployment tool

Added to portage

2026-02-03

markdown - 26.0.0-r1
Ebuild name:

dev-ada/markdown-26.0.0-r1

Description

Provides a markdown parser written in Ada

Added to portage

2026-02-03

org-modern - 1.12
Ebuild name:

app-emacs/org-modern-1.12

Description

Modern style for your GNU Emacs Org buffers

Added to portage

2026-02-03

2026-02-02
alsa-tools - 1.2.11-r2
Ebuild name:

media-sound/alsa-tools-1.2.11-r2

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

alsa-tools - 1.2.14-r1
Ebuild name:

media-sound/alsa-tools-1.2.14-r1

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

alsa-tools - 1.2.15-r2
Ebuild name:

media-sound/alsa-tools-1.2.15-r2

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

babel - 2.18.0
Ebuild name:

dev-python/babel-2.18.0

Description

Collection of tools for internationalizing Python applications

Added to portage

2026-02-02

bcftools - 1.23
Ebuild name:

sci-biology/bcftools-1.23

Description

Utilities for variant calling and manipulating VCF and BCF files

Added to portage

2026-02-02

blessed - 1.29.0
Ebuild name:

dev-python/blessed-1.29.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-02-02

cachetools - 7.0.0
Ebuild name:

dev-python/cachetools-7.0.0

Description

Extensible memoizing collections and decorators

Added to portage

2026-02-02

cargo-c - 0.10.20
Ebuild name:

dev-util/cargo-c-0.10.20

Description

Helper program to build and install c-like libraries

Added to portage

2026-02-02

dbus-fast - 4.0.0
Ebuild name:

dev-python/dbus-fast-4.0.0

Description

A faster version of dbus-next

Added to portage

2026-02-02

gcc - 13.4.1_p20260129
Ebuild name:

sys-devel/gcc-13.4.1_p20260129

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 14.3.1_p20260130
Ebuild name:

sys-devel/gcc-14.3.1_p20260130

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 15.2.1_p20260131
Ebuild name:

sys-devel/gcc-15.2.1_p20260131

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 16.0.1_p20260201
Ebuild name:

sys-devel/gcc-16.0.1_p20260201

Description

The GNU Compiler Collection

Added to portage

2026-02-02

git-credential-manager - 2.7.0
Ebuild name:

dev-vcs/git-credential-manager-2.7.0

Description

Secure Git credential storage supporing GitHub, Azure Repos, a

Added to portage

2026-02-02

git-sources - 6.19_rc8
Ebuild name:

sys-kernel/git-sources-6.19_rc8

Description

The very latest -git version of the Linux kernel

Added to portage

2026-02-02

gitlab-runner - 18.7.2
Ebuild name:

dev-util/gitlab-runner-18.7.2

Description

The official GitLab Runner, written in Go

Added to portage

2026-02-02

gitlab-runner - 18.8.0
Ebuild name:

dev-util/gitlab-runner-18.8.0

Description

The official GitLab Runner, written in Go

Added to portage

2026-02-02

go - 1.24.12
Ebuild name:

dev-lang/go-1.24.12

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-02-02

go - 1.25.6
Ebuild name:

dev-lang/go-1.25.6

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-02-02

gunicorn - 25.0.0
Ebuild name:

www-servers/gunicorn-25.0.0

Description

A WSGI HTTP Server for UNIX

Added to portage

2026-02-02

gvm-libs - 22.35.4
Ebuild name:

net-analyzer/gvm-libs-22.35.4

Description

Greenbone Vulnerability Management (GVM) libraries

Added to portage

2026-02-02

htslib - 1.23
Ebuild name:

sci-libs/htslib-1.23

Description

C library for high-throughput sequencing data formats

Added to portage

2026-02-02

ig - 0.48.1
Ebuild name:

app-admin/ig-0.48.1

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-02-02

iucode_tool - 2.3.1-r2
Ebuild name:

sys-apps/iucode_tool-2.3.1-r2

Description

Tool to manipulate Intel X86 and X86-64 processor microcode update co

Added to portage

2026-02-02

libdnet - 1.18.2_pre20260126
Ebuild name:

dev-libs/libdnet-1.18.2_pre20260126

Description

Simplified, portable interface to several low-level networking

Added to portage

2026-02-02

libzdb - 3.5.0
Ebuild name:

dev-db/libzdb-3.5.0

Description

A thread safe high level multi-database connection pool library

Added to portage

2026-02-02

logcheck - 1.4.7
Ebuild name:

app-admin/logcheck-1.4.7

Description

Mails anomalies in the system logfiles to the administrator

Added to portage

2026-02-02

nvidia-drivers - 580.126.09-r1
Ebuild name:

x11-drivers/nvidia-drivers-580.126.09-r1

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-02-02

org-modern - 9999
Ebuild name:

app-emacs/org-modern-9999

Description

Modern style for your GNU Emacs Org buffers

Added to portage

2026-02-02

ospd-openvas - 22.10.1
Ebuild name:

net-analyzer/ospd-openvas-22.10.1

Description

This is an OSP server implementation to allow GVM to remotely con

Added to portage

2026-02-02

poetry - 2.3.2
Ebuild name:

dev-python/poetry-2.3.2

Description

A frontend for poetry - a python dependency management and packaging tool

Added to portage

2026-02-02

poetry-core - 2.3.1
Ebuild name:

dev-python/poetry-core-2.3.1

Description

Poetry PEP 517 Build Backend

Added to portage

2026-02-02

rich - 14.3.2
Ebuild name:

dev-python/rich-14.3.2

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-02-02

samtools - 1.23
Ebuild name:

sci-biology/samtools-1.23

Description

Utilities for analysing and manipulating the SAM/BAM alignment formats

Added to portage

2026-02-02

sbcl - 2.6.1
Ebuild name:

dev-lisp/sbcl-2.6.1

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2026-02-02

shadow - 4.19.3
Ebuild name:

sys-apps/shadow-4.19.3

Description

Utilities to deal with user accounts

Added to portage

2026-02-02

stockfish - 18
Ebuild name:

games-board/stockfish-18

Description

Free UCI chess engine, claimed to be the strongest in the world

Added to portage

2026-02-02

zenlib - 3.2.1
Ebuild name:

dev-python/zenlib-3.2.1

Description

Useful python decorators and utilities

Added to portage

2026-02-02

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