build files for making podman containers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

41 lines
985 B

## Include all existing syntax definitions
include "/usr/share/nano/*.nanorc"
## Use bold text instead of reverse video text.
set boldtext
## Use cut-from-cursor-to-end-of-line by default.
set cutfromcursor
## Display line numbers to the left of the text.
set linenumbers
## Enable vim-style lock-files.
set locking
## Enable soft line wrapping (AKA full-line display).
set nowrap
set softwrap
## Make the Home key smarter.
set smarthome
## Use smooth scrolling as the default.
set smooth
## Enable soft line wrapping (AKA full-line display).
set softwrap
## Allow nano to be suspended.
set suspend
# set suspendable
## Convert typed tabs to spaces.
set tabstospaces
## Give nano more "emacs-like" keybindings
unbind ^G all
unbind ^C all
unbind ^Y main
unbind ^_ main
unbind M-% main
unbind ^X main
unbind ^L main
unbind ^Q main
bind ^G cancel all
bind ^C exit all
bind ^Y paste main
bind ^_ undo main
bind M-% replace main
bind ^X refresh main
bind ^L help main
bind ^Q verbatim main