Select the types of activity you want to include in your feed.
Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature.
gitlab.com/andreijiroh-dev/dotfiles
···11+# User-wide nanorc based on my system-wide configs for stellapent-cier.tailnet
22+# to make things portable as needed.
33+44+# Display line numbers to the left (and any anchors in the margin).
55+set linenumbers
66+77+# Enable vim-style lock-files. This is just to let a vim user know you
88+# are editing a file [s]he is trying to edit and vice versa. There are
99+# no plans to implement vim-style undo state in these files.
1010+set locking
1111+1212+# Display a "scrollbar" on the righthand side of the edit window.
1313+set indicator
1414+1515+# This was set to 80 to match VS Code settings.
1616+set guidestripe 80
1717+1818+## Enable mouse support, if available for your system. When enabled,
1919+## mouse clicks can be used to place the cursor, set the mark (with a
2020+## double click), and execute shortcuts. The mouse will work in the
2121+## X Window System, and on the console when gpm is running.
2222+set mouse
2323+2424+# Switch on multiple file buffers (inserting a file will put it into a
2525+# separate buffer).
2626+set multibuffer
2727+2828+## Don't convert files from DOS/Mac format.
2929+set noconvert
3030+3131+# Spread overlong lines over multiple screen lines.
3232+set softwrap
3333+3434+## Use this tab size instead of the default; it must be greater than 0.
3535+set tabsize 4
3636+3737+## Convert each typed tab to the fitting number of spaces.
3838+set tabstospaces
3939+4040+## Snip whitespace at the end of lines when justifying or hard-wrapping.
4141+# set trimblanks
4242+4343+# import included syntax highlighting for nano
4444+include "/usr/share/nano/*.nanorc"
4545+4646+# Make regularly-used features have more usual shortcuts
4747+bind ^X cut main
4848+bind ^C copy main
4949+bind ^V paste all
5050+bind ^Q exit all
5151+bind ^S savefile main
5252+#bind ^W writeout main
5353+#bind ^O insert main
5454+#set multibuffer
5555+#bind ^H help all
5656+#bind ^H exit help
5757+#bind ^F whereis all
5858+#bind ^G findnext all
5959+#bind ^B wherewas all
6060+#bind ^D findprevious all
6161+#bind ^R replace main
6262+#unbind ^U all
6363+#unbind ^N main
6464+#unbind ^Y all
6565+#unbind M-J main
6666+#unbind M-T main
6767+bind ^A mark main
6868+#bind ^P location main
6969+bind ^T gotoline main
7070+#bind ^T gotodir browser
7171+#bind ^T cutrestoffile execute
7272+#bind ^L linter execute
7373+#bind ^E execute main
7474+#bind ^K "{mark}{end}{zap}" main
7575+#bind ^U "{mark}{home}{zap}" main
7676+bind ^Z undo main
7777+bind ^Y redo main