Last active
March 21, 2020 04:55
-
-
Save shadowimmage/fed93fa18dafc8ad6ffda69a9c530a74 to your computer and use it in GitHub Desktop.
nanorc confg - settings to make nano editor (linux/bash) use a tabstop of 4 spaces, and insert spaces insetead of a tab character.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabsize 4 | |
set tabstospaces | |
set linenumbers | |
set smarthome | |
set numbercolor white,blue | |
## Include syntax highlighters from ~/.nano/ (git repo from https://github.com/serialhex/nano-highlight) | |
## spifftastic nano highlighting nano | |
include "~/.nano/nanorc.nanorc" | |
## apache2 | |
include "~/.nano/apache2.nanorc" | |
## Python | |
include "~/.nano/python.nanorc" | |
## CSS | |
include "~/.nano/css.nanorc" | |
## HTML | |
include "~/.nano/html.nanorc" | |
## Markdown | |
include "~/.nano/markdown.nanorc" | |
## Yaml | |
include "~/.nano/yaml.nanorc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment