change zsh theme

This commit is contained in:
Haak Saxberg 2020-02-12 23:07:08 -08:00
parent 1dc9cd4c70
commit a4dbf3f519

View file

@ -3,6 +3,13 @@
with lib; with lib;
let let
typewritten-theme = pkgs.fetchFromGitHub {
owner = "reobin";
repo = "typewritten";
rev = "0eebac711e98ee759942ed82f8c20e92912e2cc7";
sha256 = "0ncc1zjimapw9p64lnk91828ik4y5gxcn0awjcw0l8fzv6vi0ax5";
};
git-plan = pkgs.rustPlatform.buildRustPackage rec { git-plan = pkgs.rustPlatform.buildRustPackage rec {
name = "git-plan"; name = "git-plan";
version = "1"; version = "1";
@ -101,12 +108,12 @@ in {
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
theme = "bureau"; theme = "typewritten";
custom = "$HOME/.oh-my-zsh/custom";
plugins = [ plugins = [
"vi-mode" "vi-mode"
"git" "git"
"z" "z"
"nix-shell"
"tmuxinator" "tmuxinator"
]; ];
}; };
@ -139,17 +146,6 @@ in {
LanguageClient-neovim LanguageClient-neovim
deoplete-nvim deoplete-nvim
papercolor-theme 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 = '' extraConfig = ''
@ -319,4 +315,8 @@ in {
home.file.".tmux.conf" = { home.file.".tmux.conf" = {
source = ./tmux/tmux.conf; source = ./tmux/tmux.conf;
}; };
home.file.".oh-my-zsh/custom/themes" = {
source = typewritten-theme;
};
} }