blob: 568c39a846e6e6555577e227c958a4624fdc26da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# ~/.nanorc
## Character limit
set fill 74 # limit line-length to 74 chars
set guidestripe 74 # show a guide line at 74 chars
## Line-wrapping
set atblanks # wrap line at blanks
set softwrap # enable softwrapping lines
## Tabs & Spaces
set tabstospaces # convert tabs to spaces
set tabsize 4 # set tab size to 4 spaces
set autoindent # new lines have same indentation as previous line
## Selection
set zap # Backspace / Delete selected region
## UI Settings
set constantshow # display useful info in bottom bar
set minibar # filename & info on bottom bar, remove top bar
set indicator # scroll bar
set linenumbers # line numbers
## Keybinds
set smarthome # smarter Home-key behavior
## Syntax highlighting
include "/usr/share/nano/*.nanorc" # enable syntax highlighting
|