aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-14 17:14:37 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-14 17:14:37 -0400
commitabc22e5ab48f469a7858daba15decdf83f131ce0 (patch)
treef480246fa609cf7ecea896c4baea13924f91be97
parentUndo that last thing, bad plan (diff)
downloaddotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.tar.gz
dotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.tar.bz2
dotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.zip
Add .nanorc
-rw-r--r--home/.nanorc31
1 files changed, 31 insertions, 0 deletions
diff --git a/home/.nanorc b/home/.nanorc
new file mode 100644
index 0000000..c0bcff4
--- /dev/null
+++ b/home/.nanorc
@@ -0,0 +1,31 @@
1# FILE : dotfiles.core/home/.nanorc
2# TARGET: ~/.nanorc
3# AUTHOR: tgwil
4#
5# This is my nano configuration.
6# It simply sets some sane behavior and shows and guidestripe so I
7# remember to keep lines 72 chars or less when possible.
8
9# Character Limit
10set guidestripe 73 # char limit indicator
11
12# Line Wrapping
13set atblanks # wrap line at blanks
14set softwrap # softwrap lines
15
16# Tabs & Spaces
17set tabstospaces # convert TAB to SPACEs
18set tabsize 4 # tab size = 4
19set autoindent # newlines have same indentation as above
20
21# Selection
22set zap # BACKSPACE/DELETE selected region
23
24# UI
25set constantshow # show useful info at the bottom
26set minibar # filename & info in bottom bar, remove top bar
27set indicator # scrollbar
28set linenumbers # line numbers
29
30# Keybinds
31set smarthome # smarter HOME behavior