mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
Formating things
This commit is contained in:
parent
73fd8e35fb
commit
3013c49921
@ -7,17 +7,17 @@
|
|||||||
oh-my-zsh.enable = false;
|
oh-my-zsh.enable = false;
|
||||||
# remove extra stuff on the right side of the prompt
|
# remove extra stuff on the right side of the prompt
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
unset RPS1
|
unset RPS1
|
||||||
# Color man pages
|
# Color man pages
|
||||||
export LESS_TERMCAP_mb=$'\E[01;32m'
|
export LESS_TERMCAP_mb=$'\E[01;32m'
|
||||||
export LESS_TERMCAP_md=$'\E[01;32m'
|
export LESS_TERMCAP_md=$'\E[01;32m'
|
||||||
export LESS_TERMCAP_me=$'\E[0m'
|
export LESS_TERMCAP_me=$'\E[0m'
|
||||||
export LESS_TERMCAP_se=$'\E[0m'
|
export LESS_TERMCAP_se=$'\E[0m'
|
||||||
export LESS_TERMCAP_so=$'\E[01;47;34m'
|
export LESS_TERMCAP_so=$'\E[01;47;34m'
|
||||||
export LESS_TERMCAP_ue=$'\E[0m'
|
export LESS_TERMCAP_ue=$'\E[0m'
|
||||||
export LESS_TERMCAP_us=$'\E[01;36m'
|
export LESS_TERMCAP_us=$'\E[01;36m'
|
||||||
export LESS=-R
|
export LESS=-R
|
||||||
'';
|
'';
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
cp = "cp -i";
|
cp = "cp -i";
|
||||||
ls = "exa --icons --git";
|
ls = "exa --icons --git";
|
||||||
@ -62,6 +62,16 @@
|
|||||||
clock24 = true;
|
clock24 = true;
|
||||||
keyMode = "emacs";
|
keyMode = "emacs";
|
||||||
shell = "${pkgs.zsh}/bin/zsh";
|
shell = "${pkgs.zsh}/bin/zsh";
|
||||||
|
plugins = with pkgs; [
|
||||||
|
tmuxPlugins.nord
|
||||||
|
];
|
||||||
|
extraConfig = ''
|
||||||
|
# split panes using | and -
|
||||||
|
bind | split-window -h
|
||||||
|
bind - split-window -v
|
||||||
|
unbind '"'
|
||||||
|
unbind %
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user