nixos: move from grml to starship
This commit is contained in:
parent
f7bc43fce0
commit
8efe99074d
|
@ -48,7 +48,6 @@
|
||||||
iperf3
|
iperf3
|
||||||
bmon
|
bmon
|
||||||
figlet
|
figlet
|
||||||
grml-zsh-config
|
|
||||||
tmux
|
tmux
|
||||||
neovim
|
neovim
|
||||||
xh
|
xh
|
||||||
|
@ -64,20 +63,21 @@
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
viAlias = true;
|
|
||||||
vimAlias = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# zsh
|
# zsh
|
||||||
|
programs.starship.enable = true;
|
||||||
|
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestions.enable = true;
|
autosuggestions.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
interactiveShellInit = ''
|
# interactiveShellInit = ''
|
||||||
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
# promptInit = ''
|
||||||
'';
|
# source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
||||||
promptInit = "";
|
# '';
|
||||||
|
# promptInit = "";
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ip = "ip --color";
|
ip = "ip --color";
|
||||||
watch = "watch -c";
|
watch = "watch -c";
|
||||||
|
|
Loading…
Reference in New Issue