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

@ -7,6 +7,7 @@
jetbrains.idea-community #The IntelliJ IDE to edit Java code jetbrains.idea-community #The IntelliJ IDE to edit Java code
jetbrains.clion #The CLion IDE to edit and compile c/c++ code jetbrains.clion #The CLion IDE to edit and compile c/c++ code
jetbrains.datagrip #The DataGrip IDE to manage Databases jetbrains.datagrip #The DataGrip IDE to manage Databases
#jetbrains-toolbox
#racket #The racket Programming language, with DrRacket IDE, for University (*Not* because it's my favourite) #racket #The racket Programming language, with DrRacket IDE, for University (*Not* because it's my favourite)
rustup #Rust Programming Toolchain rustup #Rust Programming Toolchain
#go #Go Programming Language #go #Go Programming Language

View File

@ -43,5 +43,6 @@
cifs-utils cifs-utils
samba samba
kdePackages.ksshaskpass kdePackages.ksshaskpass
ntfs3g
]; ];
} }

View File

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