From ea42c4f70081ff1fec729ef23fa5e4527d5d5fa3 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Mon, 1 Jun 2020 01:33:59 -0500
Subject: [PATCH] Vim: Switch to Breeze Dark colors

---
 .gitmodules        | 3 +++
 .vim/bundle/breezy | 1 +
 .vimrc             | 6 ++++--
 3 files changed, 8 insertions(+), 2 deletions(-)
 create mode 160000 .vim/bundle/breezy

diff --git a/.gitmodules b/.gitmodules
index ae10ec74..413b6c67 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -49,3 +49,6 @@
 [submodule ".firestarter"]
 	path = .firestarter
 	url = git@git.9iron.club:salt/firestarter
+[submodule ".vim/bundle/breezy"]
+	path = .vim/bundle/breezy
+	url = https://github.com/fneu/breezy
diff --git a/.vim/bundle/breezy b/.vim/bundle/breezy
new file mode 160000
index 00000000..453167dc
--- /dev/null
+++ b/.vim/bundle/breezy
@@ -0,0 +1 @@
+Subproject commit 453167dc346f39e51141df4fe7b17272f4833c2b
diff --git a/.vimrc b/.vimrc
index eb9972d3..97644d0a 100644
--- a/.vimrc
+++ b/.vimrc
@@ -2,7 +2,9 @@ execute pathogen#infect()
 
 " Theming
 if $TERM != 'linux'
-	colorscheme nord
+	colorscheme breezy
+	set termguicolors
+	set background=light
 endif
 
 syntax on
@@ -33,7 +35,7 @@ let g:lightline = {
 	\		'charvaluehex': 'char: 0x%B'
 	\	},
 	\}
-let g:lightline.colorscheme = 'nord'
+let g:lightline.colorscheme = 'breezy'
 
 " Automatically read when a file is changed outside of Vim
 set autoread