blob: 523724e065039c8f8c855ed51ba554e3a93c0d93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
if status is-interactive
# Commands to run in interactive sessions can go here
fish_config theme choose "Rosé Pine"
fzf_configure_bindings --directory=\cf
# set fish_greeting $(fastfetch)
function fish_greeting
fastfetch
end
set BROWSER firefox-esr
set PATH "$PATH:$HOME/.local/bin"
set EDITOR nvim
function ls
command eza $argv
end
abbr y yazi
abbr v nvim
abbr ec emacsclient -t
abbr sudo doas
end
|