]> Freerunner's - dotfiles.git/commitdiff
fish: update config
authorAndre Ramnitz <tux.rising@gmail.com>
Wed, 13 Dec 2023 15:22:07 +0000 (16:22 +0100)
committerAndre Ramnitz <tux.rising@gmail.com>
Sun, 18 Aug 2024 16:18:52 +0000 (18:18 +0200)
fish/.config/fish/config.fish
fish/.config/fish/fish_variables
fish/.config/fish/functions/glo.fish [new file with mode: 0644]

index 5596508211198e7570b0fc4d7456097663c029fe..0d387d5aa7939f30eb2470e7990150ed1a3ce509 100644 (file)
@@ -1,5 +1,7 @@
 if status is-interactive
     # Commands to run in interactive sessions can go here
     #
-    cat ~/.config/banner.asc
+    #cat ~/.config/banner.asc
+    fastfetch
+    set -g fish_greeting
 end
index 44220a96c1a0f91d62939610137c175846d2360a..8ede98f4c53232e053c7048c276406a18499afe6 100644 (file)
@@ -1,7 +1,7 @@
 # This file contains fish universal variable definitions.
 # VERSION: 3.0
-SETUVAR --export EDITOR:'kks edit'
-SETUVAR --export KKS_DEFAULT_SESSION:'default'
+SETUVAR --export EDITOR:kks\x20edit
+SETUVAR --export KKS_DEFAULT_SESSION:default
 SETUVAR --export VDPAU_DRIVER:radeonsi
 SETUVAR __fish_initialized:3400
 SETUVAR fish_color_autosuggestion:8e908c
@@ -29,6 +29,7 @@ SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrbl
 SETUVAR fish_color_status:red
 SETUVAR fish_color_user:brgreen
 SETUVAR fish_color_valid_path:\x2d\x2dunderline
+SETUVAR fish_greeting:\x1d
 SETUVAR fish_key_bindings:fish_default_key_bindings
 SETUVAR fish_pager_color_completion:normal
 SETUVAR fish_pager_color_description:B3A06D\x1eyellow
diff --git a/fish/.config/fish/functions/glo.fish b/fish/.config/fish/functions/glo.fish
new file mode 100644 (file)
index 0000000..5d60fd5
--- /dev/null
@@ -0,0 +1,3 @@
+function glo --wraps='git log --oneline' --description 'alias gcp=git log --oneline'
+  git log --oneline $argv; 
+end