2021-10-05 23:42:21 -07:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with builtins; {
|
|
|
|
|
|
2021-10-08 22:47:52 -07:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
zsh-autosuggestions
|
|
|
|
|
zsh-syntax-highlighting
|
|
|
|
|
];
|
|
|
|
|
|
2021-10-05 23:42:21 -07:00
|
|
|
programs.zsh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableCompletion = true;
|
|
|
|
|
defaultKeymap = "viins";
|
|
|
|
|
|
|
|
|
|
initExtra = readFile ./zshrc;
|
|
|
|
|
|
|
|
|
|
oh-my-zsh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
theme = "typewritten";
|
|
|
|
|
custom = "$HOME/.oh-my-zsh/custom";
|
|
|
|
|
plugins = [
|
|
|
|
|
"vi-mode"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home.file.".oh-my-zsh/custom/themes/typewritten.zsh-theme" = {
|
|
|
|
|
source = ./typewritten.zsh-theme;
|
|
|
|
|
};
|
|
|
|
|
}
|