mirror of
https://codeberg.org/hyperreal/home-manager
synced 2024-11-01 19:13:06 +01:00
Fix env vars
This commit is contained in:
parent
daea398076
commit
ce60d2a64c
16
home.nix
16
home.nix
@ -186,24 +186,24 @@
|
|||||||
B = "| bat";
|
B = "| bat";
|
||||||
};
|
};
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
LS_COLORS = "$(vivid generate catppuccin-mocha)";
|
|
||||||
PAGER = "less -RFX";
|
PAGER = "less -RFX";
|
||||||
MANWIDTH = "88";
|
MANWIDTH = "88";
|
||||||
MANROFFOPT = "-c";
|
MANROFFOPT = "-c";
|
||||||
MANPAGER = "less -RFX";
|
MANPAGER = "less -RFX";
|
||||||
EDITOR = "emacsclient";
|
EDITOR = "emacsclient";
|
||||||
LESS_TERMCAP_mb = "$'\e[1;31m'";
|
|
||||||
LESS_TERMCAP_md = "$'\e[1;34m'";
|
|
||||||
LESS_TERMCAP_so = "$'\e[01;0;33m'";
|
|
||||||
LESS_TERMCAP_us = "$'\e[01;31m'";
|
|
||||||
LESS_TERMCAP_me = "$'\e[0m'";
|
|
||||||
LESS_TERMCAP_se = "$'\e[0m'";
|
|
||||||
LESS_TERMCAP_ue = "$'\e[0m'";
|
|
||||||
GROFF_NO_SGR = 1;
|
GROFF_NO_SGR = 1;
|
||||||
BAT_PAGER = "less -RFX";
|
BAT_PAGER = "less -RFX";
|
||||||
BAT_STYLE = "plain";
|
BAT_STYLE = "plain";
|
||||||
};
|
};
|
||||||
initExtraFirst = ''
|
initExtraFirst = ''
|
||||||
|
export LS_COLORS=$(vivid generate catppuccin-mocha)
|
||||||
|
export LESS_TERMCAP_mb=$'\e[1;31m'
|
||||||
|
export LESS_TERMCAP_md=$'\e[1;34m'
|
||||||
|
export LESS_TERMCAP_so=$'\e[01;0;33m'
|
||||||
|
export LESS_TERMCAP_us=$'\e[01;31m'
|
||||||
|
export LESS_TERMCAP_me=$'\e[0m'
|
||||||
|
export LESS_TERMCAP_se=$'\e[0m'
|
||||||
|
export LESS_TERMCAP_ue=$'\e[0m'
|
||||||
if test -x ${config.home.homeDirectory}/bin/gumssh; then bindkey -s '^[s' 'gumssh^M'; fi
|
if test -x ${config.home.homeDirectory}/bin/gumssh; then bindkey -s '^[s' 'gumssh^M'; fi
|
||||||
bindkey -s '^[f' 'yazi^M'
|
bindkey -s '^[f' 'yazi^M'
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user