Move interactive startup to separate config
This commit is contained in:
parent
3cce0c217e
commit
76f748dac2
38
nixos-config/config/fish/conf.d/interactive.fish
Normal file
38
nixos-config/config/fish/conf.d/interactive.fish
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
#vi mode for fish
|
||||||
|
#fish_vi_key_bindings
|
||||||
|
fish_default_key_bindings
|
||||||
|
|
||||||
|
# change greeting
|
||||||
|
set fish_greeting "Good Morning! Nice day for fishing ain't it! Hu ha!"
|
||||||
|
|
||||||
|
# Info:
|
||||||
|
# https://fishshell.com/docs/current/index.html#variables-for-changing-highlighting-colors
|
||||||
|
set fish_color_normal blue
|
||||||
|
set fish_color_command blue
|
||||||
|
set fish_color_quote bryellow
|
||||||
|
set fish_color_redirection
|
||||||
|
set fish_color_end brred
|
||||||
|
set fish_color_error red
|
||||||
|
set fish_color_param brblue
|
||||||
|
set fish_color_comment white
|
||||||
|
set fish_color_selection brcyan
|
||||||
|
set fish_color_search_match magenta
|
||||||
|
set fish_color_operator blue
|
||||||
|
set fish_color_escape green
|
||||||
|
set fish_color_autosuggestion brwhite
|
||||||
|
set fish_color_host_remote brwhite
|
||||||
|
set fish_color_cancel brred
|
||||||
|
|
||||||
|
# used in prompt
|
||||||
|
set fish_color_user --bold red
|
||||||
|
set fish_color_separator --bold yellow
|
||||||
|
set fish_color_host cyan
|
||||||
|
set fish_color_cwd yellow
|
||||||
|
|
||||||
|
# environment variables
|
||||||
|
# for ranger
|
||||||
|
#set RANGER_LOAD_DEFAULT_RC FALSE
|
||||||
|
# SSH Agent
|
||||||
|
#set SSH_AUTH_SOCK "$XDG_RUNTIME_DIR/ssh-agent.socket"
|
||||||
|
set SSH_AUTH_SOCK /run/user/1000/ssh-agent.socket
|
||||||
|
export SSH_AUTH_SOCK
|
@ -18,10 +18,7 @@ in
|
|||||||
programs = {
|
programs = {
|
||||||
fish = {
|
fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
interactiveShellInit =
|
interactiveShellInit = (builtins.readFile .config/fish/conf.d/interactive.fish);
|
||||||
''
|
|
||||||
set fish_greeting "Good Morning! Nice day for fishing ain't it! Hu ha!"
|
|
||||||
'';
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
wget = "wget -c";
|
wget = "wget -c";
|
||||||
};
|
};
|
||||||
@ -56,10 +53,7 @@ set fish_greeting "Good Morning! Nice day for fishing ain't it! Hu ha!"
|
|||||||
programs = {
|
programs = {
|
||||||
fish = {
|
fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
interactiveShellInit =
|
interactiveShellInit = (builtins.readFile .config/fish/conf.d/interactive.fish);
|
||||||
''
|
|
||||||
set fish_greeting "Good Morning! Nice day for fishing ain't it! Hu ha!"
|
|
||||||
'';
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
wget = "wget -c";
|
wget = "wget -c";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user