mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-23 19:22:43 +00:00
feat: fish
This commit is contained in:
parent
cddd568d54
commit
e7fa83e4ec
8 changed files with 132 additions and 46 deletions
12
nixcfgs/users/js0ny/programs/shell/zsh.nix
Normal file
12
nixcfgs/users/js0ny/programs/shell/zsh.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{config, pkgs, ...}: let
|
||||
aliases = import ./aliases.nix { pkgs = pkgs; };
|
||||
in {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autocd = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
dotDir = "${config.xdg.configHome}/zsh";
|
||||
shellAliases = aliases;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue