made hm profile for home desktop.

This commit is contained in:
Gabe Venberg 2024-05-15 11:32:19 -05:00
parent 13a813a32a
commit d9e424dcfb
6 changed files with 19 additions and 5 deletions

View file

@ -29,6 +29,15 @@
setopt COMPLETE_ALIASES
#select first item when you press tab the first time.
setopt MENU_COMPLETE
#case insensitive globbing
setopt NO_CASE_GLOB
#sort globs that expand to numbers by number rather than alphabeticly
setopt NUMERIC_GLOB_SORT
#allows for some neat globbing.
setopt EXTENDED_GLOB
#allow backspacing beyond the point you entered insert mode:
bindkey -v '^?' backward-delete-char
bindkey "^W" backward-kill-word
''
(lib.mkIf (!config.programs.starship.enable) ''
autoload -U promptinit
@ -58,6 +67,8 @@
'')
];
autocd = true;
autosuggestion.enable = true;
defaultKeymap = "viins";
history = {
ignoreAllDups = true;
extended = true;