]> Freerunner's - dotfiles.git/commitdiff
fish: clean-up config
authorAndre Ramnitz <tux.rising@gmail.com>
Tue, 17 Sep 2024 23:38:12 +0000 (01:38 +0200)
committerAndre Ramnitz <tux.rising@gmail.com>
Tue, 17 Sep 2024 23:38:12 +0000 (01:38 +0200)
config/dot-config/fish/config.fish
config/dot-config/fish/functions/cd...fish [new file with mode: 0644]

index ae861029c57a601963432d3cfd7783160c7528de..ea5c7ba90cb8d771fc73b1dfeb35ba2a86a32437 100644 (file)
@@ -1,6 +1,7 @@
 if status is-interactive
     # Commands to run in interactive sessions can go here
     #
+    sh ~/.local/bin/base16-flavours
     source ~/.config/fish/functions/eza-aliases.fish
        set EZA_COLORS "*.patch.skip=38;5;244"
        command fastfetch -c ~/.config/fastfetch/config.jsonc
@@ -29,4 +30,3 @@ end
 
 source ~/.config/fish/functions/eza-aliases.fish
 fish_add_path /home/andy/.spicetify
-source (/usr/bin/starship init fish --print-full-init | psub)
diff --git a/config/dot-config/fish/functions/cd...fish b/config/dot-config/fish/functions/cd...fish
new file mode 100644 (file)
index 0000000..97f469f
--- /dev/null
@@ -0,0 +1,4 @@
+function cd.. --wraps='cd ..' --description 'alias cd..=cd ..'
+  cd .. $argv
+        
+end