From 6d42ea534343b12ffda859aed59ac05a4ae23484 Mon Sep 17 00:00:00 2001 From: paumann Date: Tue, 7 Jun 2022 12:15:24 +0200 Subject: [PATCH] Initial commit --- .nanorc | 13 +++++++++++++ README.md | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 .nanorc create mode 100644 README.md diff --git a/.nanorc b/.nanorc new file mode 100644 index 0000000..4386b96 --- /dev/null +++ b/.nanorc @@ -0,0 +1,13 @@ +set linenumbers +set autoindent +set constantshow +set tabsize 4 +set zap +set positionlog +set softwrap + +# shortcuts + +bind ^C copy main +bind ^F whereis all +bind ^S savefile main \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..cb58d0f --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# `.nanorc` configuration file + +* `set linenumbers`: show line numbers +* `set autoindent`: automatically indent lines +* `set constantshow`: constantly display cursor position +* `set tabsize 4`: tab size of 4 columns +* `set zap`: allow backspace and delete to erase entire marked region +* `set softwrap`: soft line wrapping \ No newline at end of file