aboutsummaryrefslogtreecommitdiff
path: root/fish/conf.d
diff options
context:
space:
mode:
authorIndrajith2024-07-03 02:03:35 +0530
committerIndrajith2024-07-03 02:03:35 +0530
commit824022cd1f633c70c4d2782934251616756f4668 (patch)
treea310eb4bf72b26c2d110838b8c487daaa3537bea /fish/conf.d
parent57eb70137b5bbcdabdc0f02eea5477b3e5f845a1 (diff)
downloaddots-824022cd1f633c70c4d2782934251616756f4668.tar.gz
dots-824022cd1f633c70c4d2782934251616756f4668.tar.bz2
dots-824022cd1f633c70c4d2782934251616756f4668.zip
Dots Updated
* Adds GTK Themes * Adds wlogout * Adds tmux config * Adds Pywal-16-colors * Removed unwanted gtk folders * Config Updates * Fish * Hyprland * Hyprlock * Hyprpaper * waybar
Diffstat (limited to 'fish/conf.d')
-rw-r--r--fish/conf.d/fzf.fish28
-rw-r--r--fish/conf.d/nvm.fish28
-rw-r--r--fish/conf.d/rustup.fish1
3 files changed, 0 insertions, 57 deletions
diff --git a/fish/conf.d/fzf.fish b/fish/conf.d/fzf.fish
deleted file mode 100644
index 8156c11b8..000000000
--- a/fish/conf.d/fzf.fish
+++ /dev/null
@@ -1,28 +0,0 @@
-# fzf.fish is only meant to be used in interactive mode. If not in interactive mode and not in CI, skip the config to speed up shell startup
-if not status is-interactive && test "$CI" != true
- exit
-end
-
-# Because of scoping rules, to capture the shell variables exactly as they are, we must read
-# them before even executing _fzf_search_variables. We use psub to store the
-# variables' info in temporary files and pass in the filenames as arguments.
-# This variable is global so that it can be referenced by fzf_configure_bindings and in tests
-set --global _fzf_search_vars_command '_fzf_search_variables (set --show | psub) (set --names | psub)'
-
-
-# Install the default bindings, which are mnemonic and minimally conflict with fish's preset bindings
-fzf_configure_bindings
-
-# Doesn't erase autoloaded _fzf_* functions because they are not easily accessible once key bindings are erased
-function _fzf_uninstall --on-event fzf_uninstall
- _fzf_uninstall_bindings
-
- set --erase _fzf_search_vars_command
- functions --erase _fzf_uninstall _fzf_migration_message _fzf_uninstall_bindings fzf_configure_bindings
- complete --erase fzf_configure_bindings
-
- set_color cyan
- echo "fzf.fish uninstalled."
- echo "You may need to manually remove fzf_configure_bindings from your config.fish if you were using custom key bindings."
- set_color normal
-end
diff --git a/fish/conf.d/nvm.fish b/fish/conf.d/nvm.fish
deleted file mode 100644
index e060f2fe1..000000000
--- a/fish/conf.d/nvm.fish
+++ /dev/null
@@ -1,28 +0,0 @@
-set --query nvm_mirror || set --global nvm_mirror https://nodejs.org/dist
-set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
-set --global nvm_data $XDG_DATA_HOME/nvm
-
-function _nvm_install --on-event nvm_install
- test ! -d $nvm_data && command mkdir -p $nvm_data
- echo "Downloading the Node distribution index..." 2>/dev/null
- _nvm_index_update
-end
-
-function _nvm_update --on-event nvm_update
- set --query --universal nvm_data && set --erase --universal nvm_data
- set --query --universal nvm_mirror && set --erase --universal nvm_mirror
- set --query nvm_mirror || set --global nvm_mirror https://nodejs.org/dist
-end
-
-function _nvm_uninstall --on-event nvm_uninstall
- command rm -rf $nvm_data
-
- set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version
-
- set --names | string replace --filter --regex -- "^nvm" "set --erase nvm" | source
- functions --erase (functions --all | string match --entire --regex -- "^_nvm_")
-end
-
-if status is-interactive && set --query nvm_default_version && ! set --query nvm_current_version
- nvm use --silent $nvm_default_version
-end
diff --git a/fish/conf.d/rustup.fish b/fish/conf.d/rustup.fish
deleted file mode 100644
index e4cb36392..000000000
--- a/fish/conf.d/rustup.fish
+++ /dev/null
@@ -1 +0,0 @@
-source "$HOME/.cargo/env.fish"