aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--pygments/usr/lib/python3.5/site-packages/pygments/styles/sourcerer.py114
-rwxr-xr-xzsh/.zsh/aliases.zsh8
3 files changed, 119 insertions, 4 deletions
diff --git a/README.md b/README.md
index c863b15..86a9750 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,7 @@
ncmpcpp > ncurses mpc++ ui/color settings
pacman > pacman colors and progress bar animations
previews > unixporn screenshots
+ pygments > add syntax highlighting to cat and less commands
ranger > file manager with image previews and z3bra theme
ryu-login > ryu ansi art for /etc/issue tty login
ssh > remote ssh server keep alive
diff --git a/pygments/usr/lib/python3.5/site-packages/pygments/styles/sourcerer.py b/pygments/usr/lib/python3.5/site-packages/pygments/styles/sourcerer.py
new file mode 100644
index 0000000..acc50ae
--- /dev/null
+++ b/pygments/usr/lib/python3.5/site-packages/pygments/styles/sourcerer.py
@@ -0,0 +1,114 @@
+# -*- coding: utf-8 -*-
+"""
+ pygments.styles.sourcerer
+ ~~~~~~~~~~~~~~~~~~~~~~~
+
+ ██████ ██████ ██ ██ ██████ █████ █████ ██████ █████ ██████
+ ██░░░░ ██░░░░██░██ ░██░░██░░████░░░██ ██░░░██░░██░░████░░░██░░██░░██
+ ░░█████ ░██ ░██░██ ░██ ░██ ░░░██ ░░ ░███████ ░██ ░░░███████ ░██ ░░
+ ░░░░░██░██ ░██░██ ░██ ░██ ░██ ██░██░░░░ ░██ ░██░░░░ ░██
+ ██████ ░░██████ ░░██████░███ ░░█████ ░░██████░███ ░░██████░███
+ ░░░░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░
+ r e a d c o d e l i k e a w i z a r d
+
+ sourcerer by xero harrison (http://sourcerer.xero.nu)
+ ├─ based on sorcerer by Jeet Sukumaran (http://jeetworks.org)
+ └─ based on mustang by Henrique C. Alves (hcarvalhoalves@gmail.com)
+
+ :copyright: none
+ :license: free
+"""
+
+from pygments.style import Style
+from pygments.token import Keyword, Name, Comment, String, Error, Text, \
+ Number, Operator, Generic, Whitespace, Punctuation, Other, Literal
+
+class SourcererStyle(Style):
+ """
+ This style mimics the sourcerer color scheme.
+ """
+
+ background_color = "#222222"
+ highlight_color = "#49483e"
+
+ styles = {
+ # No corresponding class for the following:
+ Text: "#AFAFAF", # class: ''
+ Whitespace: "", # class: 'w'
+ Error: "#960050 bg:#1e0010", # class: 'err'
+ Other: "", # class 'x'
+
+ Comment: "#5f5f5f", # class: 'c'
+ Comment.Multiline: "#5f5f5f", # class: 'cm'
+ Comment.Preproc: "", # class: 'cp'
+ Comment.Single: "", # class: 'c1'
+ Comment.Special: "", # class: 'cs'
+
+ Keyword: "#90B0D1", # class: 'k'
+ Keyword.Constant: "", # class: 'kc'
+ Keyword.Declaration: "", # class: 'kd'
+ Keyword.Namespace: "#6688AA", # class: 'kn'
+ Keyword.Pseudo: "", # class: 'kp'
+ Keyword.Reserved: "", # class: 'kr'
+ Keyword.Type: "", # class: 'kt'
+
+ Operator: "#D0D0D0", # class: 'o'
+ Operator.Word: "", # class: 'ow' - like keywords
+
+ Punctuation: "#D0D0D0", # class: 'p'
+
+ Name: "#AfAfAf", # class: 'n'
+ Name.Attribute: "#87875f", # class: 'na' - to be revised
+ Name.Builtin: "", # class: 'nb'
+ Name.Builtin.Pseudo: "", # class: 'bp'
+ Name.Class: "#87875f", # class: 'nc' - to be revised
+ Name.Constant: "#90B0D1", # class: 'no' - to be revised
+ Name.Decorator: "#87875f", # class: 'nd' - to be revised
+ Name.Entity: "", # class: 'ni'
+ Name.Exception: "#87875f", # class: 'ne'
+ Name.Function: "#87875f", # class: 'nf'
+ Name.Property: "", # class: 'py'
+ Name.Label: "", # class: 'nl'
+ Name.Namespace: "", # class: 'nn' - to be revised
+ Name.Other: "#87875f", # class: 'nx'
+ Name.Tag: "#D0D0D0", # class: 'nt' - like a keyword
+ Name.Variable: "", # class: 'nv' - to be revised
+ Name.Variable.Class: "", # class: 'vc' - to be revised
+ Name.Variable.Global: "", # class: 'vg' - to be revised
+ Name.Variable.Instance: "", # class: 'vi' - to be revised
+
+ Number: "#8181A6", # class: 'm'
+ Number.Float: "", # class: 'mf'
+ Number.Hex: "", # class: 'mh'
+ Number.Integer: "", # class: 'mi'
+ Number.Integer.Long: "", # class: 'il'
+ Number.Oct: "", # class: 'mo'
+
+ Literal: "#8181A6", # class: 'l'
+ Literal.Date: "#87875f", # class: 'ld'
+
+ String: "#87875f", # class: 's'
+ String.Backtick: "", # class: 'sb'
+ String.Char: "", # class: 'sc'
+ String.Doc: "", # class: 'sd' - like a comment
+ String.Double: "", # class: 's2'
+ String.Escape: "#8181A6", # class: 'se'
+ String.Heredoc: "", # class: 'sh'
+ String.Interpol: "", # class: 'si'
+ String.Other: "", # class: 'sx'
+ String.Regex: "", # class: 'sr'
+ String.Single: "", # class: 's1'
+ String.Symbol: "", # class: 'ss'
+
+ Generic: "", # class: 'g'
+ Generic.Deleted: "#D0D0D0", # class: 'gd',
+ Generic.Emph: "", # class: 'ge'
+ Generic.Error: "", # class: 'gr'
+ Generic.Heading: "", # class: 'gh'
+ Generic.Inserted: "#87875f", # class: 'gi'
+ Generic.Output: "", # class: 'go'
+ Generic.Prompt: "", # class: 'gp'
+ Generic.Strong: "", # class: 'gs'
+ Generic.Subheading: "#FF9800", # class: 'gu'
+ Generic.Traceback: "", # class: 'gt'
+ }
diff --git a/zsh/.zsh/aliases.zsh b/zsh/.zsh/aliases.zsh
index 471a53b..b96831a 100755
--- a/zsh/.zsh/aliases.zsh
+++ b/zsh/.zsh/aliases.zsh
@@ -83,11 +83,11 @@ tmx() {
email() {
echo $3 | mutt -s $2 $1
}
-pcat() {
- pygmentize -f terminal256 -O style=monokai -g
+c() {
+ pygmentize -O style=sourcerer -f console256 -g $1
}
-pless() {
- pygmentize -f terminal256 -O style=monokai -g $1 | less -r
+l() {
+ pygmentize -O style=sourcerer -f console256 -g $1 | less -r
}
# read markdown files like manpages
md() {