diff --git a/.gitmodules b/.gitmodules
index 2ca12b43..d1446b3c 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -43,3 +43,6 @@
 [submodule ".vim/bundle/tabline.vim"]
 	path = .vim/bundle/tabline.vim
 	url = https://github.com/mkitt/tabline.vim
+[submodule ".vim/bundle/nord-vim"]
+	path = .vim/bundle/nord-vim
+	url = https://github.com/arcticicestudio/nord-vim
diff --git a/.vim/bundle/nord-vim b/.vim/bundle/nord-vim
new file mode 160000
index 00000000..311d964d
--- /dev/null
+++ b/.vim/bundle/nord-vim
@@ -0,0 +1 @@
+Subproject commit 311d964d3ae0063b4394eae1bac5559d4fd717b1
diff --git a/.vim/bundle/vim-colors-solarized b/.vim/bundle/vim-colors-solarized
deleted file mode 160000
index 528a59f2..00000000
--- a/.vim/bundle/vim-colors-solarized
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21
diff --git a/.vimrc b/.vimrc
index b82dcb68..985f4550 100644
--- a/.vimrc
+++ b/.vimrc
@@ -2,8 +2,7 @@ execute pathogen#infect()
 
 " Theming
 if $TERM != 'linux'
-	set background=dark
-	colorscheme solarized
+	colorscheme nord
 endif
 
 syntax on
@@ -32,7 +31,7 @@ let g:lightline = {
 	\		'charvaluehex': 'char: 0x%B'
 	\	},
 	\}
-let g:lightline.colorscheme = 'solarized'
+let g:lightline.colorscheme = 'nord'
 
 " Automatically read when a file is changed outside of Vim
 set autoread