aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.config/bat/themes/Ocean.tmTheme120
-rw-r--r--.zshrc2
-rwxr-xr-xsetup.sh2
3 files changed, 123 insertions, 1 deletions
diff --git a/.config/bat/themes/Ocean.tmTheme b/.config/bat/themes/Ocean.tmTheme
new file mode 100644
index 0000000..c81302f
--- /dev/null
+++ b/.config/bat/themes/Ocean.tmTheme
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>name</key>
+ <string>Ocean</string>
+ <key>settings</key>
+ <array>
+ <dict>
+ <key>settings</key>
+ <dict>
+ <key>background</key>
+ <string>#101020</string>
+ <key>foreground</key>
+ <string>#b1b1c8</string>
+ <key>caret</key>
+ <string>#5b5bb6</string>
+ <key>lineHighlight</key>
+ <string>#303060</string>
+ <key>selection</key>
+ <string>#303060</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Comment</string>
+ <key>scope</key>
+ <string>comment</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#8686bf</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>String</string>
+ <key>scope</key>
+ <string>string</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#a68f49</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Constant</string>
+ <key>scope</key>
+ <string>constant</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#a65f49</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Keyword</string>
+ <key>scope</key>
+ <string>keyword</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#6e6eff</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Storage</string>
+ <key>scope</key>
+ <string>storage</string>
+ <key>settings</key>
+ <dict>
+ <key>fontStyle</key>
+ <string></string>
+ <key>foreground</key>
+ <string>#FF5C57</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Entity</string>
+ <key>scope</key>
+ <string>entity</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#70b0ff</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Variable</string>
+ <key>scope</key>
+ <string>variable</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#c4e088</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>name</key>
+ <string>Invalid</string>
+ <key>scope</key>
+ <string>invalid</string>
+ <key>settings</key>
+ <dict>
+ <key>foreground</key>
+ <string>#a65f49</string>
+ </dict>
+ </dict>
+ </array>
+ <key>uuid</key>
+ <string>c06b445b-508a-4ba9-b5ac-ceb41e6c8cf7</string>
+ <key>colorSpaceName</key>
+ <string>sRGB</string>
+</dict>
+</plist>
diff --git a/.zshrc b/.zshrc
index 0d97e5e..2f61594 100644
--- a/.zshrc
+++ b/.zshrc
@@ -6,6 +6,8 @@ export EDITOR=vim
export LSCOLORS=exfxcxdxbxegedabagacad
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30'
+export BAT_THEME=Ocean
+
########################
diff --git a/setup.sh b/setup.sh
index d7f9900..485d7f4 100755
--- a/setup.sh
+++ b/setup.sh
@@ -10,7 +10,7 @@ if [ ! -d ~/.config ]; then
mkdir ~/.config
fi
-for name in alacritty git; do
+for name in alacritty bat git; do
if [ ! -L ~/.config/$name ]; then
ln -s -f ~/dotfiles/.config/$name ~/.config/$name
fi