rename files to specific program names

move editor module to vscode program
update work settings
This commit is contained in:
Tristan 2024-02-12 14:30:43 +00:00
parent d2131bdde2
commit 2c86143857
8 changed files with 62 additions and 70 deletions

View file

@ -1,31 +0,0 @@
{
pkgs,
config,
...
}: {
programs.starship.enable = true;
programs.zsh = {
enable = true;
dotDir = ".config/zsh";
history = {
path = "${config.xdg.dataHome}/zsh/zsh_history";
};
defaultKeymap = "vicmd";
autocd = true;
enableAutosuggestions = true;
completionInit = ''
autoload -U compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
zstyle ':completion:*' menu select
'';
historySubstringSearch = {
enable = true;
searchUpKey = "^[[5~";
searchDownKey = "^[[6~";
};
syntaxHighlighting.enable = true;
};
home.shellAliases = {
rm = "${pkgs.trash-cli}/bin/trash-put";
};
}