From a4dbf3f519bc3005ad16674c28dcac944d6fb0a3 Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Wed, 12 Feb 2020 23:07:08 -0800 Subject: [PATCH] change zsh theme --- nix/home.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nix/home.nix b/nix/home.nix index 145b517..e07495a 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -3,6 +3,13 @@ with lib; let + typewritten-theme = pkgs.fetchFromGitHub { + owner = "reobin"; + repo = "typewritten"; + rev = "0eebac711e98ee759942ed82f8c20e92912e2cc7"; + sha256 = "0ncc1zjimapw9p64lnk91828ik4y5gxcn0awjcw0l8fzv6vi0ax5"; + }; + git-plan = pkgs.rustPlatform.buildRustPackage rec { name = "git-plan"; version = "1"; @@ -101,12 +108,12 @@ in { oh-my-zsh = { enable = true; - theme = "bureau"; + theme = "typewritten"; + custom = "$HOME/.oh-my-zsh/custom"; plugins = [ "vi-mode" "git" "z" - "nix-shell" "tmuxinator" ]; }; @@ -139,17 +146,6 @@ in { LanguageClient-neovim deoplete-nvim papercolor-theme - { - elm-vim-syntax = pkgs.vimUtils.buildVimPlugin { - name = "elm-vim-syntax"; - src = pkgs.fetchFromGitHub { - owner = "andys8"; - repo = "vim-elm-syntax"; - rev = "d614325a037982489574012e4db04d7f8f134c17"; - sha256 = "1wjv4z5wikh9kzgklg1b4rwsjwqnmvzppqs4hsqx3pyv8g0khdk1"; - }; - }; - }.elm-vim-syntax ]; extraConfig = '' @@ -319,4 +315,8 @@ in { home.file.".tmux.conf" = { source = ./tmux/tmux.conf; }; + + home.file.".oh-my-zsh/custom/themes" = { + source = typewritten-theme; + }; }