diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-14 17:14:37 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-14 17:14:37 -0400 |
commit | abc22e5ab48f469a7858daba15decdf83f131ce0 (patch) | |
tree | f480246fa609cf7ecea896c4baea13924f91be97 | |
parent | Undo that last thing, bad plan (diff) | |
download | dotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.tar.gz dotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.tar.bz2 dotfiles.core-abc22e5ab48f469a7858daba15decdf83f131ce0.zip |
Add .nanorc
-rw-r--r-- | home/.nanorc | 31 |
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 | ||
10 | set guidestripe 73 # char limit indicator | ||
11 | |||
12 | # Line Wrapping | ||
13 | set atblanks # wrap line at blanks | ||
14 | set softwrap # softwrap lines | ||
15 | |||
16 | # Tabs & Spaces | ||
17 | set tabstospaces # convert TAB to SPACEs | ||
18 | set tabsize 4 # tab size = 4 | ||
19 | set autoindent # newlines have same indentation as above | ||
20 | |||
21 | # Selection | ||
22 | set zap # BACKSPACE/DELETE selected region | ||
23 | |||
24 | # UI | ||
25 | set constantshow # show useful info at the bottom | ||
26 | set minibar # filename & info in bottom bar, remove top bar | ||
27 | set indicator # scrollbar | ||
28 | set linenumbers # line numbers | ||
29 | |||
30 | # Keybinds | ||
31 | set smarthome # smarter HOME behavior | ||