11 lines
310 B
Fish
11 lines
310 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
alias --save !! $(history -1)
|
|
end
|
|
|
|
# Set the default editor to be nvim
|
|
setenv EDITOR nvim
|
|
setenv BEESHOME /.beeshome/
|
|
setenv FZF_DEFAULT_COMMAND 'fd --type file --follow'
|
|
setenv FZF_CTRL_T_COMMAND 'fd --type file --follow'
|