Changed ZSH completion and added package to allow Gparted to format to NTFS

This commit is contained in:
2026-02-15 12:09:27 +01:00
parent 7a0ea8c4f1
commit 2b29515874
3 changed files with 5 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{ config, pkgs, username, project, ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
enableCompletion = false;
autosuggestions = {
enable = true;
highlightStyle = "fg=242"; # Lighter gray shadow (0-255 scale)
};
ohMyZsh = {
enable = true;
plugins = [ "git" ];
@ -19,6 +19,7 @@
#To reset powerlevel10k, write 'p10k configure' in shell!
promptInit = ''
source ${pkgs.zsh-autocomplete}/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
'';
};