home: clean up fish config
This commit is contained in:
parent
d85b3aa807
commit
5dcb0a4505
1 changed files with 8 additions and 13 deletions
|
@ -1,18 +1,17 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "hx";
|
||||||
|
USER = "lu";
|
||||||
|
SHELL = pkgs.fish;
|
||||||
|
TERM = "xterm-256color";
|
||||||
|
};
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
functions = { setpath = "test -e $argv[1]; and fish_add_path $argv[1]"; };
|
functions = { setpath = "test -e $argv[1]; and fish_add_path $argv[1]"; };
|
||||||
|
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
if test -z "$XDG_RUNTIME_DIR"
|
|
||||||
set -x XDG_RUNTIME_DIR "/tmp/$USER-runtime-dir"
|
|
||||||
if test ! -e "$XDG_RUNTIME_DIR"
|
|
||||||
mkdir "$XDG_RUNTIME_DIR"
|
|
||||||
chmod 0700 "$XDG_RUNTIME_DIR"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
setpath /opt/local/bin
|
setpath /opt/local/bin
|
||||||
setpath /opt/homebrew/bin
|
setpath /opt/homebrew/bin
|
||||||
setpath ~/.cargo/bin
|
setpath ~/.cargo/bin
|
||||||
|
@ -21,11 +20,7 @@
|
||||||
setpath ~/.local/bin
|
setpath ~/.local/bin
|
||||||
setpath ~/.bun/bin
|
setpath ~/.bun/bin
|
||||||
setpath ~/Projects/Checkouts/arcanist/bin
|
setpath ~/Projects/Checkouts/arcanist/bin
|
||||||
|
setpath ~/.config/emacs/bin
|
||||||
set -x EDITOR hx
|
|
||||||
set -x USER lu
|
|
||||||
set -x SHELL (which fish)
|
|
||||||
set -x TERM xterm-256color
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue