change zsh theme
This commit is contained in:
parent
1dc9cd4c70
commit
a4dbf3f519
1 changed files with 13 additions and 13 deletions
26
nix/home.nix
26
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;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue