trying zsh
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
;time = 5.0
|
||||
|
||||
# The base directory to resolve relative image-path against (default is $XDG_DATA_HOME/avizo).
|
||||
;image-base-dir =
|
||||
image-base-dir = ~/avizo-images
|
||||
|
||||
# The image opacity; allowed values range from 0 (fully transparent) to 1.0 (fully opaque).
|
||||
;image-opacity = 1.0
|
||||
@@ -26,10 +26,10 @@ y-offset = 0.5
|
||||
x-offset = 0.5
|
||||
|
||||
# The border radius of the notification in px.
|
||||
border-radius = 0
|
||||
border-radius = 4
|
||||
|
||||
# Sets the border width of the notification in px.
|
||||
;border-width = 1
|
||||
border-width = 4
|
||||
|
||||
# The block height of the progress indicator.
|
||||
;block-height = 10
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
# enableFishIntegration = true;
|
||||
exitShellOnExit = true;
|
||||
# exitShellOnExit = true;
|
||||
settings = {
|
||||
themes = {
|
||||
custom = {
|
||||
|
||||
29
home-manager/packages/zsh/zsh.nix
Normal file
29
home-manager/packages/zsh/zsh.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
oh-my-zsh
|
||||
];
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
antidote = {
|
||||
enable = true;
|
||||
plugins = {};
|
||||
useFriendlyNames = true;
|
||||
};
|
||||
autosuggestions = {
|
||||
enable = true;
|
||||
};
|
||||
shellAliases = {
|
||||
".." = "cd ..";
|
||||
"..." = "cd ../..";
|
||||
"...." = "cd ../../..";
|
||||
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
|
||||
"z" = "zoxide";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user