-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-config.fish
More file actions
22 lines (19 loc) · 791 Bytes
/
my-config.fish
File metadata and controls
22 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -----------------------------------------------------------------------------
# MODULE LOADER FILE
#
# This file initializes plugins and sources all modular configuration files
# from the conf.d directory.
# -----------------------------------------------------------------------------
# Initialize the 'done' plugin
source $__fish_config_dir/conf.d/done.fish
# Loop to source all .fish files in the conf.d directory
# The order is controlled by the numbers at the beginning of the names (00_, 10_, etc.)
for file in $__fish_config_dir/conf.d/*.fish
source $file
end
# (Optional) Welcome message with fastfetch
# If you want it to appear when the terminal starts, remove the '#' from the
# following 3 lines.
# function fish_greeting
# fastfetch
# end