fix(dotfiles): Overwrite default NixOS fish config
NixOS by default adds some fish-config setup that I don't think I want, but it's a bit unclear what the goal of it is. I've overwritten it now and things still work fine!
This commit is contained in:
parent
b67fca345a
commit
d7ae1b70d3
2 changed files with 1 additions and 5 deletions
|
@ -22,7 +22,7 @@ in {
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"i3/config".source = "${dotfiles}/i3.conf";
|
"i3/config".source = "${dotfiles}/i3.conf";
|
||||||
"tmux.conf".source = "${dotfiles}/tmux.conf";
|
"tmux.conf".source = "${dotfiles}/tmux.conf";
|
||||||
"fish/foreign-env/tazjin".source = "${dotfiles}/config.fish";
|
"fish/config.fish".source = "${dotfiles}/config.fish";
|
||||||
"rofi.conf".source = "${dotfiles}/rofi.conf";
|
"rofi.conf".source = "${dotfiles}/rofi.conf";
|
||||||
"alacritty.yml".source = "${dotfiles}/alacritty.yml";
|
"alacritty.yml".source = "${dotfiles}/alacritty.yml";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# Configure classic prompt
|
# Configure classic prompt
|
||||||
set fish_color_user --bold blue
|
set fish_color_user --bold blue
|
||||||
set fish_color_cwd --bold white
|
set fish_color_cwd --bold white
|
||||||
#set __fish_git_prompt_color green
|
|
||||||
set __fish_git_prompt_showcolorhints yes
|
|
||||||
set __fish_git_prompt_color_prefix purple
|
|
||||||
set __fish_git_prompt_color_suffix purple
|
|
||||||
|
|
||||||
# Fish configuration
|
# Fish configuration
|
||||||
set fish_greeting ""
|
set fish_greeting ""
|
||||||
|
|
Loading…
Reference in a new issue