-
Notifications
You must be signed in to change notification settings - Fork 1
/
.nanorc
42 lines (32 loc) · 1020 Bytes
/
.nanorc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## See man nanorc for details.
set tabsize 4
set tabstospaces
set autoindent
set mouse
set atblanks
set linenumbers
set locking
# Jump to first non-whitespace character first, then first character.
set smarthome
## Enable ~/.nano_history for saving and reading search/replace strings.
set historylog
## Switch on multiple file buffers (inserting a file will put it into
## a separate buffer).
set multibuffer
## Enable soft line wrapping (AKA full-line display).
# set softwrap
## Detect word boundaries more accurately by treating punctuation
## characters as parts of words.
set wordbounds
## Paint the interface elements of nano.
## This is an example; by default there are no colors.
# set titlecolor brightwhite,blue
# set statuscolor brightwhite,green
# set keycolor green
# set functioncolor yellow
# include "/usr/local/share/nano/*.nanorc"
# bind M-W nowrap main
# bind M-A casesens search
# bind ^S research main
## Set this if your backspace key sends Del most of the time.
# bind Del backspace all