diff options
author | Franck Cuny <franck@fcuny.net> | 2024-05-01 20:03:35 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-05-01 20:03:35 -0700 |
commit | 8e93e47cbbe5c23c9c33416051c96df96c443f24 (patch) | |
tree | 9cf07595fa3b0fc540fd8eb78e7a21f0bf93e873 /nix/profiles | |
parent | improve variable's name (diff) | |
download | world-8e93e47cbbe5c23c9c33416051c96df96c443f24.tar.gz |
configure fish and install alacritty
Diffstat (limited to 'nix/profiles')
-rw-r--r-- | nix/profiles/home-manager/dev.nix | 13 | ||||
-rw-r--r-- | nix/profiles/home-manager/fish.nix | 36 |
2 files changed, 49 insertions, 0 deletions
diff --git a/nix/profiles/home-manager/dev.nix b/nix/profiles/home-manager/dev.nix index 49fe83a..30d7dca 100644 --- a/nix/profiles/home-manager/dev.nix +++ b/nix/profiles/home-manager/dev.nix @@ -32,6 +32,19 @@ in goPrivate = [ "github.rbx.com/*" "github.com/fcuny/*" ]; }; + programs = { + alacritty = { + enable = true; + settings = { + font = { + normal.family = "Monaspace Argon"; + bold = { style = "Bold"; }; + size = 16; + }; + }; + }; + }; + home.packages = with pkgs; [ # go go-tools diff --git a/nix/profiles/home-manager/fish.nix b/nix/profiles/home-manager/fish.nix index 5a2610c..2ea90d9 100644 --- a/nix/profiles/home-manager/fish.nix +++ b/nix/profiles/home-manager/fish.nix @@ -4,5 +4,41 @@ interactiveShellInit = '' set fish_greeting "" ''; + shellInit = '' + # Fish git prompt + set __fish_git_prompt_showuntrackedfiles 'yes' + set __fish_git_prompt_showdirtystate 'yes' + set __fish_git_prompt_showstashstate \'\' + set __fish_git_prompt_showupstream 'none' + set -g fish_prompt_pwd_dir_length 3 + + # colored man output + # from http://linuxtidbits.wordpress.com/2009/03/23/less-colors-for-man-pages/ + setenv LESS_TERMCAP_mb \e'[01;31m' # begin blinking + setenv LESS_TERMCAP_md \e'[01;38;5;74m' # begin bold + setenv LESS_TERMCAP_me \e'[0m' # end mode + setenv LESS_TERMCAP_se \e'[0m' # end standout-mode + setenv LESS_TERMCAP_so \e'[38;5;246m' # begin standout-mode - info box + setenv LESS_TERMCAP_ue \e'[0m' # end underline + setenv LESS_TERMCAP_us \e'[04;38;5;146m' # begin underline + + function fish_prompt + set_color brblack + echo -n "["(date "+%H:%M")"] " + set_color blue + echo -n (hostname -s) + if [ $PWD != $HOME ] + set_color brblack + echo -n ':' + set_color yellow + echo -n (basename $PWD) + end + set_color green + printf '%s ' (__fish_git_prompt) + set_color red + echo -n '| ' + set_color normal + end + ''; }; } |