Configure oh-my-zsh

This commit is contained in:
Isshi0417 2024-07-03 20:41:19 +09:00
parent f280f88d3e
commit 6cff2a3a6f
3 changed files with 10 additions and 11 deletions

View File

@ -4,7 +4,7 @@
imports =
[
../../modules/home-manager/git.nix
# ../../modules/home-manager/zsh.nix
../../modules/home-manager/zsh.nix
../../modules/home-manager/themes/basic-gtk.nix
../../modules/home-manager/vscode.nix
];

View File

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
home.programs.vscode = {
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
bbenoist.nix

View File

@ -2,7 +2,7 @@
{
# Download zsh packages
packages = with pkgs; [
home.packages = with pkgs; [
zsh
oh-my-zsh
starship
@ -15,14 +15,13 @@
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
programs.zsh = {
oh-my-zsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
# oh-my-zsh
oh-my-zsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
};
}