mirror of
https://codeberg.org/hyperreal/home-manager
synced 2024-11-01 15:33:05 +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";
|
||||
};
|
||||
sessionVariables = {
|
||||
LS_COLORS = "$(vivid generate catppuccin-mocha)";
|
||||
PAGER = "less -RFX";
|
||||
MANWIDTH = "88";
|
||||
MANROFFOPT = "-c";
|
||||
MANPAGER = "less -RFX";
|
||||
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;
|
||||
BAT_PAGER = "less -RFX";
|
||||
BAT_STYLE = "plain";
|
||||
};
|
||||
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
|
||||
bindkey -s '^[f' 'yazi^M'
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user