2016-08-14 19:18:00 +00:00
|
|
|
|
## Sample initialization file for GNU nano.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
##
|
2020-03-12 18:03:02 +00:00
|
|
|
|
## For the options that take parameters, the default value is shown.
|
|
|
|
|
## Other options are unset by default. To make sure that an option
|
|
|
|
|
## is disabled, you can use "unset <option>".
|
2020-04-09 08:24:19 +00:00
|
|
|
|
##
|
|
|
|
|
## Characters that are special in a shell should not be escaped here.
|
|
|
|
|
## Inside string parameters, quotes should not be escaped -- the last
|
|
|
|
|
## double quote on the line will be seen as the closing quote.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2020-04-12 09:15:28 +00:00
|
|
|
|
## Make 'nextword' (Ctrl+Right) and 'chopwordright' (Ctrl+Delete)
|
|
|
|
|
## stop at word ends instead of at beginnings.
|
2018-04-30 20:10:27 +00:00
|
|
|
|
# set afterends
|
|
|
|
|
|
2017-03-07 16:36:43 +00:00
|
|
|
|
## When soft line wrapping is enabled, make it wrap lines at blanks
|
|
|
|
|
## (tabs and spaces) instead of always at the edge of the screen.
|
|
|
|
|
# set atblanks
|
|
|
|
|
|
2018-05-30 08:19:57 +00:00
|
|
|
|
## Automatically indent a newly created line to the same number of
|
|
|
|
|
## tabs and/or spaces as the preceding line -- or as the next line
|
|
|
|
|
## if the preceding line is the beginning of a paragraph.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set autoindent
|
|
|
|
|
|
2014-05-14 12:52:15 +00:00
|
|
|
|
## Back up files to the current filename plus a tilde.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set backup
|
|
|
|
|
|
|
|
|
|
## The directory to put unique backup files in.
|
|
|
|
|
# set backupdir ""
|
|
|
|
|
|
|
|
|
|
## Use bold text instead of reverse video text.
|
|
|
|
|
# set boldtext
|
|
|
|
|
|
2020-06-24 07:17:25 +00:00
|
|
|
|
## Treat any line with leading whitespace as the beginning of a paragraph.
|
|
|
|
|
# set bookstyle
|
|
|
|
|
|
2018-06-01 13:31:32 +00:00
|
|
|
|
## The characters treated as closing brackets when justifying paragraphs.
|
|
|
|
|
## This may not include any blank characters. Only closing punctuation,
|
|
|
|
|
## optionally followed by these closing brackets, can end sentences.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set brackets ""')>]}"
|
|
|
|
|
|
2019-02-19 18:05:28 +00:00
|
|
|
|
## Automatically hard-wrap the current line when it becomes overlong.
|
|
|
|
|
# set breaklonglines
|
|
|
|
|
|
2014-03-19 12:05:29 +00:00
|
|
|
|
## Do case-sensitive searches by default.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set casesensitive
|
|
|
|
|
|
2021-02-22 11:20:39 +00:00
|
|
|
|
## Constantly display the cursor position in the status bar or minibar.
|
2015-07-15 19:40:37 +00:00
|
|
|
|
# set constantshow
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2017-07-14 14:06:52 +00:00
|
|
|
|
## Use cut-from-cursor-to-end-of-line by default.
|
|
|
|
|
# set cutfromcursor
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2019-02-19 18:05:28 +00:00
|
|
|
|
## Do not use the line below the title bar, leaving it entirely blank.
|
|
|
|
|
# set emptyline
|
|
|
|
|
|
2019-12-25 13:17:27 +00:00
|
|
|
|
## Set the target width for automatic hard-wrapping and for justifying
|
|
|
|
|
## paragraphs. If the specified value is 0 or less, the wrapping point
|
|
|
|
|
## will be the terminal's width minus this number.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set fill -8
|
|
|
|
|
|
2016-01-14 13:14:16 +00:00
|
|
|
|
## Remember the used search/replace strings for the next session.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set historylog
|
|
|
|
|
|
2020-05-27 09:10:04 +00:00
|
|
|
|
## Display a "scrollbar" on the righthand side of the edit window.
|
|
|
|
|
# set indicator
|
|
|
|
|
|
2019-02-19 18:05:28 +00:00
|
|
|
|
## Scroll the buffer contents per half-screen instead of per line.
|
|
|
|
|
# set jumpyscrolling
|
|
|
|
|
|
2020-08-03 08:22:21 +00:00
|
|
|
|
## Display line numbers to the left (and any anchors in the margin).
|
2016-10-22 11:36:12 +00:00
|
|
|
|
# set linenumbers
|
|
|
|
|
|
2013-01-03 03:44:11 +00:00
|
|
|
|
## Enable vim-style lock-files. This is just to let a vim user know you
|
2017-07-29 17:07:46 +00:00
|
|
|
|
## are editing a file [s]he is trying to edit and vice versa. There are
|
2014-06-04 16:02:51 +00:00
|
|
|
|
## no plans to implement vim-style undo state in these files.
|
2013-01-03 03:44:11 +00:00
|
|
|
|
# set locking
|
|
|
|
|
|
2020-09-21 07:53:08 +00:00
|
|
|
|
## Fall back to slow libmagic to try and determine an applicable syntax.
|
|
|
|
|
# set magic
|
|
|
|
|
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## The opening and closing brackets that are found by a matching-bracket
|
|
|
|
|
## search. This may not contain blank characters. The opening brackets
|
|
|
|
|
## must come before the closing ones, and they must be in the same order.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set matchbrackets "(<[{)>]}"
|
|
|
|
|
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## Suppress the title bar and show the filename plus a cursor-position
|
|
|
|
|
## percentage in the space of the status bar.
|
2020-12-23 15:24:54 +00:00
|
|
|
|
# set minibar
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Enable mouse support, if available for your system. When enabled,
|
|
|
|
|
## mouse clicks can be used to place the cursor, set the mark (with a
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## double click), and execute shortcuts. The mouse will work in the
|
|
|
|
|
## X Window System, and on the console when gpm is running.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set mouse
|
|
|
|
|
|
2014-05-14 12:52:15 +00:00
|
|
|
|
## Switch on multiple file buffers (inserting a file will put it into
|
|
|
|
|
## a separate buffer).
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set multibuffer
|
|
|
|
|
|
|
|
|
|
## Don't convert files from DOS/Mac format.
|
|
|
|
|
# set noconvert
|
|
|
|
|
|
|
|
|
|
## Don't display the helpful shortcut lists at the bottom of the screen.
|
|
|
|
|
# set nohelp
|
|
|
|
|
|
2019-04-07 07:40:35 +00:00
|
|
|
|
## Don't automatically add a newline when a file does not end with one.
|
|
|
|
|
# set nonewlines
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Set operating directory. nano will not read or write files outside
|
|
|
|
|
## this directory and its subdirectories. Also, the current directory
|
|
|
|
|
## is changed to here, so any files are inserted from this dir. A blank
|
2014-03-19 12:05:29 +00:00
|
|
|
|
## string means the operating-directory feature is turned off.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set operatingdir ""
|
|
|
|
|
|
2014-03-19 12:05:29 +00:00
|
|
|
|
## Remember the cursor position in each file for the next editing session.
|
2015-07-15 19:50:55 +00:00
|
|
|
|
# set positionlog
|
2014-03-19 12:05:29 +00:00
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Preserve the XON and XOFF keys (^Q and ^S).
|
|
|
|
|
# set preserve
|
|
|
|
|
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## The characters treated as closing punctuation when justifying paragraphs.
|
|
|
|
|
## This may not contain blank characters. Only these closing punctuations,
|
|
|
|
|
## optionally followed by closing brackets, can end sentences.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set punct "!.?"
|
|
|
|
|
|
2021-02-22 11:20:39 +00:00
|
|
|
|
## Make status-bar messages disappear after 1 keystroke instead of after 20.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set quickblank
|
|
|
|
|
|
2019-01-23 18:57:17 +00:00
|
|
|
|
## The regular expression that matches quoting characters in email
|
|
|
|
|
## or line-comment introducers in source code. The default is:
|
2019-06-08 15:07:34 +00:00
|
|
|
|
# set quotestr "^([ ]*([!#%:;>|}]|//))+"
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2018-12-28 18:20:40 +00:00
|
|
|
|
## Try to work around a mismatching terminfo terminal description.
|
|
|
|
|
# set rawsequences
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Fix Backspace/Delete confusion problem.
|
|
|
|
|
# set rebinddelete
|
|
|
|
|
|
2019-06-06 13:00:34 +00:00
|
|
|
|
## Do regular-expression searches by default.
|
|
|
|
|
## Regular expressions are of the extended type (ERE).
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set regexp
|
|
|
|
|
|
2020-04-30 15:25:48 +00:00
|
|
|
|
## Save a changed buffer automatically on exit; don't prompt.
|
|
|
|
|
# set saveonexit
|
|
|
|
|
## (The old form of this option, 'set tempfile', is deprecated.)
|
|
|
|
|
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## Put the cursor on the highlighted item in the file browser, and
|
|
|
|
|
## show the cursor in the help viewer; useful for people who use a
|
|
|
|
|
## braille display and people with poor vision.
|
2016-09-11 07:41:09 +00:00
|
|
|
|
# set showcursor
|
|
|
|
|
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## Make the Home key smarter: when Home is pressed anywhere but at the
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## very beginning of non-whitespace characters on a line, the cursor
|
|
|
|
|
## will jump to that beginning (either forwards or backwards). If the
|
2021-09-15 07:55:14 +00:00
|
|
|
|
## cursor is already at that position, it will jump to the true start
|
|
|
|
|
## of the line (the left edge).
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set smarthome
|
|
|
|
|
|
2020-03-19 12:10:28 +00:00
|
|
|
|
## Spread overlong lines over multiple screen lines.
|
2009-12-02 03:36:22 +00:00
|
|
|
|
# set softwrap
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Use this spelling checker instead of the internal one. This option
|
2017-07-29 17:07:46 +00:00
|
|
|
|
## does not have a default value.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set speller "aspell -x -c"
|
|
|
|
|
|
2020-09-23 07:55:35 +00:00
|
|
|
|
## Use the end of the title bar for some state flags: I = auto-indenting,
|
|
|
|
|
## M = mark, L = hard-wrapping long lines, R = recording, S = soft-wrapping.
|
|
|
|
|
# set stateflags
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## Use this tab size instead of the default; it must be greater than 0.
|
|
|
|
|
# set tabsize 8
|
|
|
|
|
|
2021-07-01 07:47:41 +00:00
|
|
|
|
## Convert each typed tab to the fitting number of spaces.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set tabstospaces
|
|
|
|
|
|
2017-12-02 13:02:26 +00:00
|
|
|
|
## Snip whitespace at the end of lines when justifying or hard-wrapping.
|
|
|
|
|
# set trimblanks
|
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
|
## The two single-column characters used to display the first characters
|
|
|
|
|
## of tabs and spaces. 187 in ISO 8859-1 (0000BB in Unicode) and 183 in
|
|
|
|
|
## ISO-8859-1 (0000B7 in Unicode) seem to be good values for these.
|
2014-03-19 09:23:55 +00:00
|
|
|
|
## The default when in a UTF-8 locale:
|
|
|
|
|
# set whitespace "»·"
|
|
|
|
|
## The default otherwise:
|
|
|
|
|
# set whitespace ">."
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2016-06-30 16:02:45 +00:00
|
|
|
|
## Detect word boundaries differently by treating punctuation
|
2006-06-26 04:39:31 +00:00
|
|
|
|
## characters as parts of words.
|
2006-06-01 17:23:28 +00:00
|
|
|
|
# set wordbounds
|
|
|
|
|
|
2016-06-30 16:02:45 +00:00
|
|
|
|
## The characters (besides alphanumeric ones) that should be considered
|
|
|
|
|
## as parts of words. This option does not have a default value. When
|
|
|
|
|
## set, it overrides option 'set wordbounds'.
|
|
|
|
|
# set wordchars "<_>."
|
|
|
|
|
|
2018-10-24 09:02:08 +00:00
|
|
|
|
## Let an unmodified Backspace or Delete erase the marked region (instead
|
|
|
|
|
## of a single character, and without affecting the cutbuffer).
|
|
|
|
|
# set zap
|
2006-06-01 17:23:28 +00:00
|
|
|
|
|
2021-11-09 15:28:37 +00:00
|
|
|
|
## Hide the bars and use the whole terminal for editable text.
|
|
|
|
|
# set zero
|
|
|
|
|
|
2021-02-14 09:03:45 +00:00
|
|
|
|
|
|
|
|
|
## Paint the interface elements of nano. These are examples; there are
|
2021-03-03 08:31:46 +00:00
|
|
|
|
## no colors by default, except for errorcolor and spotlightcolor.
|
2021-09-14 10:14:49 +00:00
|
|
|
|
# set titlecolor bold,white,blue
|
|
|
|
|
# set promptcolor lightwhite,grey
|
|
|
|
|
# set statuscolor bold,white,green
|
|
|
|
|
# set errorcolor bold,white,red
|
2021-10-01 07:47:45 +00:00
|
|
|
|
# set spotlightcolor black,lightyellow
|
2020-06-15 13:30:52 +00:00
|
|
|
|
# set selectedcolor lightwhite,magenta
|
2019-03-09 08:52:53 +00:00
|
|
|
|
# set stripecolor ,yellow
|
2020-08-28 17:44:44 +00:00
|
|
|
|
# set scrollercolor cyan
|
2017-03-23 18:22:04 +00:00
|
|
|
|
# set numbercolor cyan
|
|
|
|
|
# set keycolor cyan
|
|
|
|
|
# set functioncolor green
|
2020-08-28 17:44:44 +00:00
|
|
|
|
|
2017-03-23 18:22:04 +00:00
|
|
|
|
## In root's .nanorc you might want to use:
|
2021-09-14 10:14:49 +00:00
|
|
|
|
# set titlecolor bold,white,magenta
|
2020-12-06 15:08:06 +00:00
|
|
|
|
# set promptcolor black,yellow
|
2021-09-14 10:14:49 +00:00
|
|
|
|
# set statuscolor bold,white,magenta
|
|
|
|
|
# set errorcolor bold,white,red
|
2021-03-03 08:31:46 +00:00
|
|
|
|
# set spotlightcolor black,orange
|
2020-06-15 13:30:52 +00:00
|
|
|
|
# set selectedcolor lightwhite,cyan
|
2019-03-09 08:52:53 +00:00
|
|
|
|
# set stripecolor ,yellow
|
2020-08-28 17:44:44 +00:00
|
|
|
|
# set scrollercolor magenta
|
2017-03-23 18:22:04 +00:00
|
|
|
|
# set numbercolor magenta
|
2020-06-15 13:30:52 +00:00
|
|
|
|
# set keycolor lightmagenta
|
2017-03-23 18:22:04 +00:00
|
|
|
|
# set functioncolor magenta
|
2014-05-14 12:52:15 +00:00
|
|
|
|
|
|
|
|
|
|
2020-04-09 08:24:19 +00:00
|
|
|
|
## === Syntax coloring ===
|
|
|
|
|
## For all details, see 'man nanorc', section SYNTAX HIGHLIGHTING.
|
2018-09-09 06:31:17 +00:00
|
|
|
|
|
2020-09-11 08:45:19 +00:00
|
|
|
|
## To include most of the existing syntax definitions, you can do:
|
2014-03-30 20:37:40 +00:00
|
|
|
|
# include "@PKGDATADIR@/*.nanorc"
|
|
|
|
|
|
2020-04-09 08:24:19 +00:00
|
|
|
|
## Or you can select just the ones you need. For example:
|
|
|
|
|
# include "@PKGDATADIR@/html.nanorc"
|
|
|
|
|
# include "@PKGDATADIR@/python.nanorc"
|
|
|
|
|
# include "@PKGDATADIR@/sh.nanorc"
|
|
|
|
|
|
2020-04-14 17:02:02 +00:00
|
|
|
|
## In @PKGDATADIR@/extra/ you can find some syntaxes that are
|
2020-09-11 08:45:19 +00:00
|
|
|
|
## specific for certain distros or for some less common languages.
|
|
|
|
|
|
2014-03-30 20:37:40 +00:00
|
|
|
|
|
2019-10-03 14:38:33 +00:00
|
|
|
|
## If <Tab> should always produce four spaces when editing a Python file,
|
|
|
|
|
## independent of the settings of 'tabsize' and 'tabstospaces':
|
|
|
|
|
# extendsyntax python tabgives " "
|
2019-10-06 12:50:27 +00:00
|
|
|
|
|
2019-10-03 14:38:33 +00:00
|
|
|
|
## If <Tab> should always produce an actual TAB when editing a Makefile:
|
|
|
|
|
# extendsyntax makefile tabgives " "
|
|
|
|
|
|
|
|
|
|
|
2020-04-09 08:24:19 +00:00
|
|
|
|
## === Key bindings ===
|
|
|
|
|
## For all details, see 'man nanorc', section REBINDING KEYS.
|
2018-09-09 06:31:17 +00:00
|
|
|
|
|
2021-11-04 09:05:56 +00:00
|
|
|
|
## If you want to suspend nano with one keystroke (instead of with ^T^Z):
|
|
|
|
|
# bind ^Z suspend main
|
|
|
|
|
|
2018-07-22 06:32:15 +00:00
|
|
|
|
## The <Ctrl+Delete> keystroke deletes the word to the right of the cursor.
|
|
|
|
|
## On some terminals the <Ctrl+Backspace> keystroke produces ^H, which is
|
|
|
|
|
## the ASCII character for backspace, so it is bound by default to the
|
|
|
|
|
## backspace function. The <Backspace> key itself produces a different
|
|
|
|
|
## keycode, which is hard-bound to the backspace function. So, if you
|
|
|
|
|
## normally use <Backspace> for backspacing and not ^H, you can make
|
|
|
|
|
## <Ctrl+Backspace> delete the word to the left of the cursor with:
|
2019-02-24 16:04:17 +00:00
|
|
|
|
# bind ^H chopwordleft main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
|
2021-10-31 10:14:09 +00:00
|
|
|
|
## For a more mnemonic Comment keystroke (overriding Cut-from-cursor):
|
|
|
|
|
# bind M-K comment main
|
|
|
|
|
|
2021-10-22 09:33:32 +00:00
|
|
|
|
## If you want ^L to just refresh the screen and not center the cursor:
|
|
|
|
|
# bind ^L refresh main
|
|
|
|
|
|
2021-10-31 10:14:09 +00:00
|
|
|
|
## When you sometimes type M-J instead of M-K, or M-T instead of M-R:
|
|
|
|
|
# unbind M-J main
|
|
|
|
|
# unbind M-T main
|
|
|
|
|
## (Those functions are still accessible through ^T^J and ^T^V.)
|
|
|
|
|
|
2021-06-10 08:36:37 +00:00
|
|
|
|
## For quickly uppercasing or lowercasing the word under the cursor.
|
|
|
|
|
## (These effectively do a Ctrl+Right followed by a Shift+Ctrl+Left,
|
|
|
|
|
## and then pipe the selected text through a sed command.)
|
2021-10-31 10:20:12 +00:00
|
|
|
|
# bind Sh-M-U "Oc[1;6D|sed 's/.*/\U&/'
" main
|
|
|
|
|
# bind Sh-M-L "Oc[1;6D|sed 's/.*/\L&/'
" main
|
2021-06-10 08:36:37 +00:00
|
|
|
|
|
2018-10-08 19:14:49 +00:00
|
|
|
|
## If you would like nano to have keybindings that are more "usual",
|
|
|
|
|
## such as ^O for Open, ^F for Find, ^H for Help, and ^Q for Quit,
|
|
|
|
|
## then uncomment these:
|
|
|
|
|
#bind ^Q exit all
|
2020-01-31 16:11:47 +00:00
|
|
|
|
#bind ^S savefile main
|
|
|
|
|
#bind ^W writeout main
|
|
|
|
|
#bind ^O insert main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
#bind ^H help all
|
|
|
|
|
#bind ^H exit help
|
|
|
|
|
#bind ^F whereis all
|
|
|
|
|
#bind ^G findnext all
|
|
|
|
|
#bind ^B wherewas all
|
|
|
|
|
#bind ^D findprevious all
|
|
|
|
|
#bind ^R replace main
|
2021-06-10 15:18:00 +00:00
|
|
|
|
#bind ^X cut main
|
2020-01-31 15:21:43 +00:00
|
|
|
|
#bind ^C copy main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
#bind ^V paste all
|
2020-07-05 09:02:41 +00:00
|
|
|
|
#bind ^P location main
|
2021-06-10 15:18:00 +00:00
|
|
|
|
#bind ^E execute main
|
2020-01-31 16:11:47 +00:00
|
|
|
|
#bind ^A mark main
|
|
|
|
|
#unbind ^K main
|
|
|
|
|
#unbind ^U all
|
|
|
|
|
#unbind ^N main
|
|
|
|
|
#unbind ^Y all
|
|
|
|
|
#unbind M-J main
|
|
|
|
|
#unbind M-T main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
#bind ^T gotoline main
|
|
|
|
|
#bind ^T gotodir browser
|
2021-06-10 15:18:00 +00:00
|
|
|
|
#bind ^T cutrestoffile execute
|
|
|
|
|
#bind ^L linter execute
|
2020-01-31 16:11:47 +00:00
|
|
|
|
#bind M-U undo main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
#bind M-R redo main
|
2021-06-10 15:18:00 +00:00
|
|
|
|
#bind ^Z undo main
|
|
|
|
|
#bind ^Y redo main
|
2018-10-08 19:14:49 +00:00
|
|
|
|
#set multibuffer
|