diff options
-rw-r--r-- | emacs-packages.nix | 1 | ||||
-rw-r--r-- | home.nix | 2 | ||||
-rw-r--r-- | vimrc | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/emacs-packages.nix b/emacs-packages.nix index e6b02f0..021cf88 100644 --- a/emacs-packages.nix +++ b/emacs-packages.nix @@ -50,6 +50,7 @@ restclient s shakespeare-mode smart-mode-line +spacemacs-theme swiper sx undo-tree @@ -77,7 +77,7 @@ in "XTerm*termName" = "xterm-256color"; "XTerm*metaSendsEscape" = true; }; - extraConfig = builtins.readFile(solarized-xresources + "/Xresources.light"); + extraConfig = builtins.readFile(solarized-xresources + "/Xresources.dark"); }; services = { @@ -55,5 +55,5 @@ map <C-\> :tab split<CR>:exec("tag ".expand("<cword>"))<CR> map <A-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR> """ Colors -set background=light -colorscheme sol +set background=dark +colorscheme spacegray |