mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 22:45:27 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7311f2576e | ||
| 721d3c0d15 | |||
| c82e183ff9 | |||
| 1b6a93650b | |||
| aa85bb0c72 | |||
| ceb452aa68 | |||
| 467a1c2ff9 | |||
| f73cd32309 | |||
| 0be2a5b879 | |||
| 8c015ac251 | |||
| 894ec12fd8 | |||
| 8cf3602de1 | |||
| 57c4f0438e | |||
|
|
02907d6a6b | ||
|
|
127edd1b2c | ||
|
|
76dc53b50a |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -33,3 +33,4 @@ lock
|
||||
node_modules
|
||||
ssh/local.d/*
|
||||
!ssh/local.d/.gitkeep
|
||||
config/fish/fish_variables
|
||||
|
||||
@@ -49,7 +49,7 @@ repos:
|
||||
- id: actionlint
|
||||
|
||||
- repo: https://github.com/renovatebot/pre-commit-hooks
|
||||
rev: 39.169.3
|
||||
rev: 39.174.3
|
||||
hooks:
|
||||
- id: renovate-config-validator
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
"work": [
|
||||
{
|
||||
"key": "user.email",
|
||||
"value": "ismo.vuorinen@vincit.fi"
|
||||
"value": "ismo.vuorinen@svea.com"
|
||||
},
|
||||
{
|
||||
"key": "user.name",
|
||||
@@ -31,4 +31,4 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -294,7 +294,7 @@ export SHORT_HOST=$(hostname -s)
|
||||
# asdf
|
||||
# https://github.com/asdf-vm/asdf
|
||||
msg "Setting up asdf configuration"
|
||||
export ASDF_DIR="${XDG_BIN_HOME}/asdf"
|
||||
export ASDF_DIR="${HOME}/.local/asdf"
|
||||
[[ -d $ASDF_DIR ]] && {
|
||||
# [[ -d $ASDF_DIR/completions ]] && FPATH="$ASDF_DIR/completions:$FPATH"
|
||||
# [[ -d $ASDF_DIR/plugins ]] && FPATH="$ASDF_DIR/plugins:$FPATH"
|
||||
@@ -465,7 +465,7 @@ export TMUX_CONF_DIR="$XDG_CONFIG_HOME/tmux"
|
||||
export TMUX_PLUGINS="$TMUX_CONF_DIR/plugins"
|
||||
export TMUX_CONF="$TMUX_CONF_DIR/tmux.conf"
|
||||
## These settings are for zsh-tmux
|
||||
export ZSH_TMUX_AUTOSTART=false
|
||||
export ZSH_TMUX_AUTOSTART=true
|
||||
export ZSH_TMUX_CONFIG="$TMUX_CONF"
|
||||
export ZSH_TMUX_UNICODE=true
|
||||
export ZSH_TMUX_AUTOQUIT=false
|
||||
|
||||
95
config/fish/conf.d/fish-exa.fish
Normal file
95
config/fish/conf.d/fish-exa.fish
Normal file
@@ -0,0 +1,95 @@
|
||||
function __fish_exa_install --on-event fish-exa_install
|
||||
function _set
|
||||
if not set --query --universal --export $argv[1]
|
||||
set --universal --export $argv[1] $argv[2..-1]
|
||||
end
|
||||
end
|
||||
|
||||
# Prefer eza as exa is unmaintained
|
||||
if type -q eza
|
||||
set -Ux __FISH_EXA_BINARY eza
|
||||
else
|
||||
set -Ux __FISH_EXA_BINARY exa
|
||||
end
|
||||
|
||||
set -Ux __FISH_EXA_BASE_ALIASES l ll lg le lt lc lo
|
||||
set -Ux __FISH_EXA_EXPANDED a d i id aa ad ai aid aad aai aaid
|
||||
set -Ux __FISH_EXA_EXPANDED_OPT_NAME LA LD LI LID LAA LAD LAI LAID LAAD LAAI LAAID
|
||||
set -Ux __FISH_EXA_OPT_NAMES
|
||||
set -Ux __FISH_EXA_ALIASES
|
||||
set -Ux __FISH_EXA_SORT_OPTIONS name .name size ext mod old acc cr inode
|
||||
|
||||
_set EXA_STANDARD_OPTIONS "--group" "--header" "--group-directories-first"
|
||||
|
||||
# Base aliases
|
||||
_set EXA_L_OPTIONS
|
||||
_set EXA_LL_OPTIONS "--long"
|
||||
_set EXA_LG_OPTIONS "--git" "--git-ignore" "--long"
|
||||
_set EXA_LE_OPTIONS "--extended" "--long"
|
||||
_set EXA_LT_OPTIONS "--tree" "--level"
|
||||
_set EXA_LC_OPTIONS "--across"
|
||||
_set EXA_LO_OPTIONS "--oneline"
|
||||
|
||||
# Extended aliases
|
||||
_set EXA_LI_OPTIONS "--icons"
|
||||
_set EXA_LD_OPTIONS "--only-dirs"
|
||||
_set EXA_LID_OPTIONS "--icons" "--only-dirs"
|
||||
_set EXA_LA_OPTIONS "--all" "--binary"
|
||||
_set EXA_LAD_OPTIONS "--all" "--binary" "--only-dirs"
|
||||
_set EXA_LAI_OPTIONS "--all" "--binary" "--icons"
|
||||
_set EXA_LAID_OPTIONS "--all" "--binary" "--icons" "--only-dirs"
|
||||
_set EXA_LAA_OPTIONS "--all" "--all" "--binary"
|
||||
_set EXA_LAAD_OPTIONS "--all" "--all" "--binary" "--only-dirs"
|
||||
_set EXA_LAAI_OPTIONS "--all" "--all" "--binary" "--icons"
|
||||
_set EXA_LAAID_OPTIONS "--all" "--all" "--binary" "--icons" "--only-dirs"
|
||||
|
||||
for a in $__FISH_EXA_BASE_ALIASES
|
||||
set -l opt_name (string join '_' "EXA" (string upper $a) "OPTIONS")
|
||||
if test $a = "ll"
|
||||
alias --save "$a" "exa_git"
|
||||
else
|
||||
alias --save "$a" "$__FISH_EXA_BINARY \$EXA_STANDARD_OPTIONS \$$opt_name"
|
||||
end
|
||||
set -a __FISH_EXA_OPT_NAMES "$opt_name"
|
||||
set -a __FISH_EXA_ALIASES "$a"
|
||||
|
||||
for i in (seq (count $__FISH_EXA_EXPANDED))
|
||||
set -l name "$a$__FISH_EXA_EXPANDED[$i]"
|
||||
# --tree is useless given --all --all
|
||||
if test $name = "ltaa"; or test $name = "ltaac"
|
||||
continue
|
||||
end
|
||||
set -l exp_opt_name (string join '_' "EXA" $__FISH_EXA_EXPANDED_OPT_NAME[$i] "OPTIONS")
|
||||
if string match --quiet 'll*' "$name"
|
||||
alias --save "$name" "exa_git \$$exp_opt_name"
|
||||
else
|
||||
alias --save "$name" "$__FISH_EXA_BINARY \$EXA_STANDARD_OPTIONS \$$exp_opt_name \$$opt_name"
|
||||
end
|
||||
set -a __FISH_EXA_ALIASES "$name"
|
||||
|
||||
if not contains $exp_opt_name $__FISH_EXA_OPT_NAMES
|
||||
set -a __FISH_EXA_OPT_NAMES $exp_opt_name
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function __fish_exa_update --on-event fish-exa_update
|
||||
__fish_exa_uninstall
|
||||
__fish_exa_install
|
||||
end
|
||||
|
||||
function __fish_exa_uninstall --on-event fish-exa_uninstall
|
||||
for a in $__FISH_EXA_ALIASES
|
||||
functions --erase $a
|
||||
funcsave $a
|
||||
end
|
||||
|
||||
set --erase __FISH_EXA_BASE_ALIASES
|
||||
set --erase __FISH_EXA_ALIASES
|
||||
set --erase __FISH_EXA_EXPANDED
|
||||
set --erase __FISH_EXA_EXPANDED_OPT_NAME
|
||||
set --erase __FISH_EXA_OPT_NAMES
|
||||
set --erase __FISH_EXA_SORT_OPTIONS
|
||||
set --erase __FISH_EXA_BINARY
|
||||
end
|
||||
@@ -1,7 +1,14 @@
|
||||
# ╭──────────────────────────────────────────────────────────╮
|
||||
# │ fish/config.fish │
|
||||
# ╰──────────────────────────────────────────────────────────╯
|
||||
|
||||
# ASDF configuration code
|
||||
source $HOME/.local/asdf/asdf.fish
|
||||
|
||||
fish_add_path $HOME/.local/bin
|
||||
fish_add_path $HOME/.local/share/nvim/mason/bin
|
||||
fish_add_path $HOME/.local/state/composer/vendor/bin
|
||||
|
||||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
fish_add_path $HOME/.cargo/bin
|
||||
fish_add_path $HOME/.local/bin
|
||||
fish_add_path $HOME/.local/share/nvim/mason/bin
|
||||
fish_add_path $HOME/.local/state/composer/vendor/bin
|
||||
# Commands to run in interactive sessions can go here
|
||||
end
|
||||
|
||||
@@ -7,3 +7,4 @@ ehfive/fish-bash2env
|
||||
jgusta/paths
|
||||
danhper/fish-ssh-agent
|
||||
halostatue/fish-brew@v3
|
||||
gazorby/fish-exa
|
||||
|
||||
@@ -1,212 +0,0 @@
|
||||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR VIRTUAL_ENV_DISABLE_PROMPT:true
|
||||
SETUVAR ZO_CMD:zo
|
||||
SETUVAR Z_CMD:z
|
||||
SETUVAR Z_DATA:/Users/ivuorinen/\x2elocal/share/z/data
|
||||
SETUVAR Z_DATA_DIR:/Users/ivuorinen/\x2elocal/share/z
|
||||
SETUVAR Z_EXCLUDE:\x5e/Users/ivuorinen\x24
|
||||
SETUVAR --export ___paths_plugin_colors:27e6ff\x1e29e0ff\x1e5cd8ff\x1e77d0ff\x1e8ac8ff\x1e9cbfff\x1eafb5ff\x1ec5a7ff\x1ed99bfe\x1eea8feb\x1ef684d5\x1efe7abd\x1eff73a3\x1eff708a\x1efa7070\x1eff708a\x1eff73a3\x1efe7abd\x1ef684d5\x1eea8feb\x1ed99bfe\x1ec5a7ff\x1eafb5ff\x1e9cbfff\x1e8ac8ff\x1e77d0ff\x1e5cd8ff\x1e29e0ff
|
||||
SETUVAR --export ___paths_plugin_current_color:4
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR _fisher_danhper_2F_fish_2D_ssh_2D_agent_files:\x7e/\x2econfig/fish/functions/__ssh_agent_is_started\x2efish\x1e\x7e/\x2econfig/fish/functions/__ssh_agent_start\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/fish\x2dssh\x2dagent\x2efish
|
||||
SETUVAR _fisher_ehfive_2F_fish_2D_bash2env_files:\x7e/\x2econfig/fish/functions/__bash2env\x2esh\x1e\x7e/\x2econfig/fish/functions/bash2env\x2efish
|
||||
SETUVAR _fisher_halostatue_2F_fish_2D_brew_40_v3_files:\x7e/\x2econfig/fish/functions/has_cask\x2efish\x1e\x7e/\x2econfig/fish/functions/has_keg\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/halostatue_fish_brew\x2efish
|
||||
SETUVAR _fisher_halostatue_2F_fish_2D_macos_40_v7_files:\x7e/\x2econfig/fish/functions/__macos_app_bundleid\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_app_find\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_app_frontmost\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_app_icon\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_app_quit\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_cd\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_clean\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_column\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_desktop_icons\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_hidden\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_icon\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_list\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_pushd\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_pwd\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_quarantine\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_selected\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_track\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_untrack\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_finder_update\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_airdrop\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_airport\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_brightness\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_defaults_query\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_flushdns\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_font_smoothing\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_lsclean\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_mail\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_proxy_icon\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_serialnumber\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_touchid\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_touchid_sudo\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_transparency\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_version\x2efish\x1e\x7e/\x2econfig/fish/functions/__macos_mac_vol\x2efish\x1e\x7e/\x2econfig/fish/functions/app\x2efish\x1e\x7e/\x2econfig/fish/functions/finder\x2efish\x1e\x7e/\x2econfig/fish/functions/has_app\x2efish\x1e\x7e/\x2econfig/fish/functions/mac\x2efish\x1e\x7e/\x2econfig/fish/functions/manp\x2efish\x1e\x7e/\x2econfig/fish/functions/note\x2efish\x1e\x7e/\x2econfig/fish/functions/ql\x2efish\x1e\x7e/\x2econfig/fish/functions/remind\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/halostatue_fish_macos\x2efish\x1e\x7e/\x2econfig/fish/completions/app\x2efish\x1e\x7e/\x2econfig/fish/completions/finder\x2efish\x1e\x7e/\x2econfig/fish/completions/mac\x2efish\x1e\x7e/\x2econfig/fish/completions/manp\x2efish\x1e\x7e/\x2econfig/fish/completions/ql\x2efish
|
||||
SETUVAR _fisher_ilancosman_2F_tide_40_v6_files:\x7e/\x2econfig/fish/functions/_tide_1_line_prompt\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_2_line_prompt\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_cache_variables\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_detect_os\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_find_and_remove\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_fish_colorize\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_aws\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_character\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_cmd_duration\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_context\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_crystal\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_direnv\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_distrobox\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_docker\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_elixir\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_gcloud\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_git\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_go\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_java\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_jobs\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_kubectl\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_nix_shell\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_node\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_os\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_php\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_private_mode\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_pulumi\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_python\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_ruby\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_rustc\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_shlvl\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_status\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_terraform\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_time\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_toolbox\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_vi_mode\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_item_zig\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_parent_dirs\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_print_item\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_pwd\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_remove_unusable_items\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_sub_bug\x2dreport\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_sub_configure\x2efish\x1e\x7e/\x2econfig/fish/functions/_tide_sub_reload\x2efish\x1e\x7e/\x2econfig/fish/functions/fish_mode_prompt\x2efish\x1e\x7e/\x2econfig/fish/functions/fish_prompt\x2efish\x1e\x7e/\x2econfig/fish/functions/tide\x1e\x7e/\x2econfig/fish/functions/tide\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/_tide_init\x2efish\x1e\x7e/\x2econfig/fish/completions/tide\x2efish
|
||||
SETUVAR _fisher_jethrokuan_2F_z_files:\x7e/\x2econfig/fish/functions/__z\x2efish\x1e\x7e/\x2econfig/fish/functions/__z_add\x2efish\x1e\x7e/\x2econfig/fish/functions/__z_clean\x2efish\x1e\x7e/\x2econfig/fish/functions/__z_complete\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/z\x2efish
|
||||
SETUVAR _fisher_jgusta_2F_paths_files:\x7e/\x2econfig/fish/functions/paths\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/paths\x2efish
|
||||
SETUVAR _fisher_jorgebucaran_2F_fisher_files:\x7e/\x2econfig/fish/functions/fisher\x2efish\x1e\x7e/\x2econfig/fish/completions/fisher\x2efish
|
||||
SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:\x7e/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_list\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e\x7e/\x2econfig/fish/functions/nvm\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e\x7e/\x2econfig/fish/completions/nvm\x2efish
|
||||
SETUVAR _fisher_plugins:jorgebucaran/fisher\x1ejorgebucaran/nvm\x2efish\x1eilancosman/tide\x40v6\x1ejethrokuan/z\x1ehalostatue/fish\x2dmacos\x40v7\x1eehfive/fish\x2dbash2env\x1ejgusta/paths\x1edanhper/fish\x2dssh\x2dagent\x1ehalostatue/fish\x2dbrew\x40v3
|
||||
SETUVAR _fisher_upgraded_to_4_4:\x1d
|
||||
SETUVAR _tide_left_items:os\x1epwd\x1egit\x1enewline\x1echaracter
|
||||
SETUVAR _tide_prompt_4323:\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\uf179\x1b\x5b38\x3b2\x3b148\x3b148\x3b148m\x20\x1b\x5bm\x0f\x1b\x5bm\x0f\x40PWD\x40\x1b\x5b38\x3b2\x3b148\x3b148\x3b148m\x20\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5b38\x3b2\x3b95\x3b215\x3b0m\uf1d3\x20\x1b\x5b37m\x1b\x5b38\x3b2\x3b95\x3b215\x3b0mmain\x1b\x5b38\x3b2\x3b255\x3b0\x3b0m\x1b\x5b38\x3b2\x3b95\x3b215\x3b0m\x1b\x5b38\x3b2\x3b95\x3b215\x3b0m\x20\x2a1\x1b\x5b38\x3b2\x3b255\x3b0\x3b0m\x1b\x5b38\x3b2\x3b215\x3b175\x3b0m\x1b\x5b38\x3b2\x3b215\x3b175\x3b0m\x20\x2116\x1b\x5b38\x3b2\x3b0\x3b175\x3b255m\x20\x3f4\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\x20\x1e\x1b\x5b38\x3b2\x3b95\x3b215\x3b0m\u276f\x1e\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f\x20\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5b38\x3b2\x3b68\x3b136\x3b62m\ue24f\x2022\x2e13\x2e1\x1b\x5b38\x3b2\x3b148\x3b148\x3b148m\x20\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5b38\x3b2\x3b0\x3b175\x3b175m\U000f0320\x203\x2e13\x2e2\x1b\x5bm\x0f\x1b\x5bm\x0f\x1b\x5bm\x0f
|
||||
SETUVAR _tide_prompt_78628:\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\uf179\x1b\x5b38\x3b2\x3b148\x3b148\x3b148m\x20\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x40PWD\x40\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x20\x1e\x1b\x5b38\x3b2\x3b95\x3b215\x3b0m\u276f\x1e\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x20\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x5b38\x3b2\x3b135\x3b135\x3b95m\uf252\x207m\x2013s\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm\x1b\x28B\x1b\x5bm
|
||||
SETUVAR _tide_right_items:status\x1ecmd_duration\x1econtext\x1ejobs\x1enode\x1epython\x1ejava\x1ephp\x1eruby\x1ekubectl\x1eterraform\x1eaws
|
||||
SETUVAR fish_color_autosuggestion:brblack
|
||||
SETUVAR fish_color_cancel:\x2dr
|
||||
SETUVAR fish_color_command:blue
|
||||
SETUVAR fish_color_comment:red
|
||||
SETUVAR fish_color_cwd:green
|
||||
SETUVAR fish_color_cwd_root:red
|
||||
SETUVAR fish_color_end:green
|
||||
SETUVAR fish_color_error:brred
|
||||
SETUVAR fish_color_escape:brcyan
|
||||
SETUVAR fish_color_history_current:\x2d\x2dbold
|
||||
SETUVAR fish_color_host:normal
|
||||
SETUVAR fish_color_host_remote:yellow
|
||||
SETUVAR fish_color_normal:normal
|
||||
SETUVAR fish_color_operator:brcyan
|
||||
SETUVAR fish_color_param:cyan
|
||||
SETUVAR fish_color_quote:yellow
|
||||
SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold
|
||||
SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||
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:yellow\x1e\x2di
|
||||
SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||
SETUVAR fish_pager_color_selected_background:\x2dr
|
||||
SETUVAR fish_user_paths:/Users/ivuorinen/\x2elocal/state/composer/vendor/bin\x1e/Users/ivuorinen/\x2elocal/share/nvim/mason/bin\x1e/Users/ivuorinen/\x2elocal/share/bob/nvim\x2dbin\x1e/Users/ivuorinen/\x2elocal/bin
|
||||
SETUVAR tide_aws_bg_color:normal
|
||||
SETUVAR tide_aws_color:FF9900
|
||||
SETUVAR tide_aws_icon:\uf270
|
||||
SETUVAR tide_character_color:5FD700
|
||||
SETUVAR tide_character_color_failure:FF0000
|
||||
SETUVAR tide_character_icon:\u276f
|
||||
SETUVAR tide_character_vi_icon_default:\u276e
|
||||
SETUVAR tide_character_vi_icon_replace:\u25b6
|
||||
SETUVAR tide_character_vi_icon_visual:V
|
||||
SETUVAR tide_cmd_duration_bg_color:normal
|
||||
SETUVAR tide_cmd_duration_color:87875F
|
||||
SETUVAR tide_cmd_duration_decimals:0
|
||||
SETUVAR tide_cmd_duration_icon:\uf252
|
||||
SETUVAR tide_cmd_duration_threshold:3000
|
||||
SETUVAR tide_context_always_display:false
|
||||
SETUVAR tide_context_bg_color:normal
|
||||
SETUVAR tide_context_color_default:D7AF87
|
||||
SETUVAR tide_context_color_root:D7AF00
|
||||
SETUVAR tide_context_color_ssh:D7AF87
|
||||
SETUVAR tide_context_hostname_parts:1
|
||||
SETUVAR tide_crystal_bg_color:normal
|
||||
SETUVAR tide_crystal_color:FFFFFF
|
||||
SETUVAR tide_crystal_icon:\ue62f
|
||||
SETUVAR tide_direnv_bg_color:normal
|
||||
SETUVAR tide_direnv_bg_color_denied:normal
|
||||
SETUVAR tide_direnv_color:D7AF00
|
||||
SETUVAR tide_direnv_color_denied:FF0000
|
||||
SETUVAR tide_direnv_icon:\u25bc
|
||||
SETUVAR tide_distrobox_bg_color:normal
|
||||
SETUVAR tide_distrobox_color:FF00FF
|
||||
SETUVAR tide_distrobox_icon:\U000f01a7
|
||||
SETUVAR tide_docker_bg_color:normal
|
||||
SETUVAR tide_docker_color:2496ED
|
||||
SETUVAR tide_docker_default_contexts:default\x1ecolima
|
||||
SETUVAR tide_docker_icon:\uf308
|
||||
SETUVAR tide_elixir_bg_color:normal
|
||||
SETUVAR tide_elixir_color:4E2A8E
|
||||
SETUVAR tide_elixir_icon:\ue62d
|
||||
SETUVAR tide_gcloud_bg_color:normal
|
||||
SETUVAR tide_gcloud_color:4285F4
|
||||
SETUVAR tide_gcloud_icon:\U000f02ad
|
||||
SETUVAR tide_git_bg_color:normal
|
||||
SETUVAR tide_git_bg_color_unstable:normal
|
||||
SETUVAR tide_git_bg_color_urgent:normal
|
||||
SETUVAR tide_git_color_branch:5FD700
|
||||
SETUVAR tide_git_color_conflicted:FF0000
|
||||
SETUVAR tide_git_color_dirty:D7AF00
|
||||
SETUVAR tide_git_color_operation:FF0000
|
||||
SETUVAR tide_git_color_staged:D7AF00
|
||||
SETUVAR tide_git_color_stash:5FD700
|
||||
SETUVAR tide_git_color_untracked:00AFFF
|
||||
SETUVAR tide_git_color_upstream:5FD700
|
||||
SETUVAR tide_git_icon:\uf1d3
|
||||
SETUVAR tide_git_truncation_length:24
|
||||
SETUVAR tide_git_truncation_strategy:\x1d
|
||||
SETUVAR tide_go_bg_color:normal
|
||||
SETUVAR tide_go_color:00ACD7
|
||||
SETUVAR tide_go_icon:\ue627
|
||||
SETUVAR tide_java_bg_color:normal
|
||||
SETUVAR tide_java_color:ED8B00
|
||||
SETUVAR tide_java_icon:\ue256
|
||||
SETUVAR tide_jobs_bg_color:normal
|
||||
SETUVAR tide_jobs_color:5FAF00
|
||||
SETUVAR tide_jobs_icon:\uf013
|
||||
SETUVAR tide_jobs_number_threshold:1000
|
||||
SETUVAR tide_kubectl_bg_color:normal
|
||||
SETUVAR tide_kubectl_color:326CE5
|
||||
SETUVAR tide_kubectl_icon:\U000f10fe
|
||||
SETUVAR tide_left_prompt_frame_enabled:false
|
||||
SETUVAR tide_left_prompt_items:os\x1epwd\x1egit\x1enewline\x1echaracter
|
||||
SETUVAR tide_left_prompt_prefix:
|
||||
SETUVAR tide_left_prompt_separator_diff_color:\x20
|
||||
SETUVAR tide_left_prompt_separator_same_color:\x20
|
||||
SETUVAR tide_left_prompt_suffix:\x20
|
||||
SETUVAR tide_nix_shell_bg_color:normal
|
||||
SETUVAR tide_nix_shell_color:7EBAE4
|
||||
SETUVAR tide_nix_shell_icon:\uf313
|
||||
SETUVAR tide_node_bg_color:normal
|
||||
SETUVAR tide_node_color:44883E
|
||||
SETUVAR tide_node_icon:\ue24f
|
||||
SETUVAR tide_os_bg_color:normal
|
||||
SETUVAR tide_os_color:normal
|
||||
SETUVAR tide_os_icon:\uf179
|
||||
SETUVAR tide_php_bg_color:normal
|
||||
SETUVAR tide_php_color:617CBE
|
||||
SETUVAR tide_php_icon:\ue608
|
||||
SETUVAR tide_private_mode_bg_color:normal
|
||||
SETUVAR tide_private_mode_color:FFFFFF
|
||||
SETUVAR tide_private_mode_icon:\U000f05f9
|
||||
SETUVAR tide_prompt_add_newline_before:true
|
||||
SETUVAR tide_prompt_color_frame_and_connection:6C6C6C
|
||||
SETUVAR tide_prompt_color_separator_same_color:949494
|
||||
SETUVAR tide_prompt_icon_connection:\x20
|
||||
SETUVAR tide_prompt_min_cols:34
|
||||
SETUVAR tide_prompt_pad_items:false
|
||||
SETUVAR tide_prompt_transient_enabled:true
|
||||
SETUVAR tide_pulumi_bg_color:normal
|
||||
SETUVAR tide_pulumi_color:F7BF2A
|
||||
SETUVAR tide_pulumi_icon:\uf1b2
|
||||
SETUVAR tide_pwd_bg_color:normal
|
||||
SETUVAR tide_pwd_color_anchors:00AFFF
|
||||
SETUVAR tide_pwd_color_dirs:0087AF
|
||||
SETUVAR tide_pwd_color_truncated_dirs:8787AF
|
||||
SETUVAR tide_pwd_icon:\uf07c
|
||||
SETUVAR tide_pwd_icon_home:\uf015
|
||||
SETUVAR tide_pwd_icon_unwritable:\uf023
|
||||
SETUVAR tide_pwd_markers:\x2ebzr\x1e\x2ecitc\x1e\x2egit\x1e\x2ehg\x1e\x2enode\x2dversion\x1e\x2epython\x2dversion\x1e\x2eruby\x2dversion\x1e\x2eshorten_folder_marker\x1e\x2esvn\x1e\x2eterraform\x1eCargo\x2etoml\x1ecomposer\x2ejson\x1eCVS\x1ego\x2emod\x1epackage\x2ejson\x1ebuild\x2ezig
|
||||
SETUVAR tide_python_bg_color:normal
|
||||
SETUVAR tide_python_color:00AFAF
|
||||
SETUVAR tide_python_icon:\U000f0320
|
||||
SETUVAR tide_right_prompt_frame_enabled:false
|
||||
SETUVAR tide_right_prompt_items:status\x1ecmd_duration\x1econtext\x1ejobs\x1edirenv\x1enode\x1epython\x1erustc\x1ejava\x1ephp\x1epulumi\x1eruby\x1ego\x1egcloud\x1ekubectl\x1edistrobox\x1etoolbox\x1eterraform\x1eaws\x1enix_shell\x1ecrystal\x1eelixir\x1ezig
|
||||
SETUVAR tide_right_prompt_prefix:\x20
|
||||
SETUVAR tide_right_prompt_separator_diff_color:\x20
|
||||
SETUVAR tide_right_prompt_separator_same_color:\x20
|
||||
SETUVAR tide_right_prompt_suffix:
|
||||
SETUVAR tide_ruby_bg_color:normal
|
||||
SETUVAR tide_ruby_color:B31209
|
||||
SETUVAR tide_ruby_icon:\ue23e
|
||||
SETUVAR tide_rustc_bg_color:normal
|
||||
SETUVAR tide_rustc_color:F74C00
|
||||
SETUVAR tide_rustc_icon:\ue7a8
|
||||
SETUVAR tide_shlvl_bg_color:normal
|
||||
SETUVAR tide_shlvl_color:d78700
|
||||
SETUVAR tide_shlvl_icon:\uf120
|
||||
SETUVAR tide_shlvl_threshold:1
|
||||
SETUVAR tide_status_bg_color:normal
|
||||
SETUVAR tide_status_bg_color_failure:normal
|
||||
SETUVAR tide_status_color:5FAF00
|
||||
SETUVAR tide_status_color_failure:D70000
|
||||
SETUVAR tide_status_icon:\u2714
|
||||
SETUVAR tide_status_icon_failure:\u2718
|
||||
SETUVAR tide_terraform_bg_color:normal
|
||||
SETUVAR tide_terraform_color:844FBA
|
||||
SETUVAR tide_terraform_icon:\U000f1062
|
||||
SETUVAR tide_time_bg_color:normal
|
||||
SETUVAR tide_time_color:5F8787
|
||||
SETUVAR tide_time_format:
|
||||
SETUVAR tide_toolbox_bg_color:normal
|
||||
SETUVAR tide_toolbox_color:613583
|
||||
SETUVAR tide_toolbox_icon:\ue24f
|
||||
SETUVAR tide_vi_mode_bg_color_default:normal
|
||||
SETUVAR tide_vi_mode_bg_color_insert:normal
|
||||
SETUVAR tide_vi_mode_bg_color_replace:normal
|
||||
SETUVAR tide_vi_mode_bg_color_visual:normal
|
||||
SETUVAR tide_vi_mode_color_default:949494
|
||||
SETUVAR tide_vi_mode_color_insert:87AFAF
|
||||
SETUVAR tide_vi_mode_color_replace:87AF87
|
||||
SETUVAR tide_vi_mode_color_visual:FF8700
|
||||
SETUVAR tide_vi_mode_icon_default:D
|
||||
SETUVAR tide_vi_mode_icon_insert:I
|
||||
SETUVAR tide_vi_mode_icon_replace:R
|
||||
SETUVAR tide_vi_mode_icon_visual:V
|
||||
SETUVAR tide_zig_bg_color:normal
|
||||
SETUVAR tide_zig_color:F7A41D
|
||||
SETUVAR tide_zig_icon:\ue6a9
|
||||
7
config/fish/functions/exa_git.fish
Normal file
7
config/fish/functions/exa_git.fish
Normal file
@@ -0,0 +1,7 @@
|
||||
function exa_git -d "Use exa and its git options if in a git repo"
|
||||
if git rev-parse --is-inside-work-tree &>/dev/null
|
||||
$__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} --git $argv
|
||||
else
|
||||
$__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} $argv
|
||||
end
|
||||
end
|
||||
4
config/fish/functions/l.fish
Normal file
4
config/fish/functions/l.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function l --wraps='eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS' --description 'alias l eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/la.fish
Normal file
4
config/fish/functions/la.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function la --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS' --description 'alias la eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/laa.fish
Normal file
4
config/fish/functions/laa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function laa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS' --description 'alias laa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/laad.fish
Normal file
4
config/fish/functions/laad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function laad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS' --description 'alias laad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/laai.fish
Normal file
4
config/fish/functions/laai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function laai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS' --description 'alias laai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/laaid.fish
Normal file
4
config/fish/functions/laaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function laaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS' --description 'alias laaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lad.fish
Normal file
4
config/fish/functions/lad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS' --description 'alias lad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lai.fish
Normal file
4
config/fish/functions/lai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS' --description 'alias lai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/laid.fish
Normal file
4
config/fish/functions/laid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function laid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS' --description 'alias laid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lc.fish
Normal file
4
config/fish/functions/lc.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lc --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lc eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lca.fish
Normal file
4
config/fish/functions/lca.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lca --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS' --description 'alias lca eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcaa.fish
Normal file
4
config/fish/functions/lcaa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcaad.fish
Normal file
4
config/fish/functions/lcaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcaai.fish
Normal file
4
config/fish/functions/lcaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcaaid.fish
Normal file
4
config/fish/functions/lcaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcad.fish
Normal file
4
config/fish/functions/lcad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcai.fish
Normal file
4
config/fish/functions/lcai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcaid.fish
Normal file
4
config/fish/functions/lcaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcd.fish
Normal file
4
config/fish/functions/lcd.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lci.fish
Normal file
4
config/fish/functions/lci.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lci --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lci eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lcid.fish
Normal file
4
config/fish/functions/lcid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lcid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ld.fish
Normal file
4
config/fish/functions/ld.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ld --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS' --description 'alias ld eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/le.fish
Normal file
4
config/fish/functions/le.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function le --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS' --description 'alias le eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lea.fish
Normal file
4
config/fish/functions/lea.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lea --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS' --description 'alias lea eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leaa.fish
Normal file
4
config/fish/functions/leaa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leaad.fish
Normal file
4
config/fish/functions/leaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leaai.fish
Normal file
4
config/fish/functions/leaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leaaid.fish
Normal file
4
config/fish/functions/leaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lead.fish
Normal file
4
config/fish/functions/lead.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lead --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS' --description 'alias lead eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leai.fish
Normal file
4
config/fish/functions/leai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS' --description 'alias leai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leaid.fish
Normal file
4
config/fish/functions/leaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/led.fish
Normal file
4
config/fish/functions/led.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function led --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS' --description 'alias led eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lei.fish
Normal file
4
config/fish/functions/lei.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lei --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS' --description 'alias lei eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/leid.fish
Normal file
4
config/fish/functions/leid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function leid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lg.fish
Normal file
4
config/fish/functions/lg.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lg --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lg eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lga.fish
Normal file
4
config/fish/functions/lga.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lga --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS' --description 'alias lga eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgaa.fish
Normal file
4
config/fish/functions/lgaa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgaad.fish
Normal file
4
config/fish/functions/lgaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgaai.fish
Normal file
4
config/fish/functions/lgaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgaaid.fish
Normal file
4
config/fish/functions/lgaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgad.fish
Normal file
4
config/fish/functions/lgad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgai.fish
Normal file
4
config/fish/functions/lgai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgaid.fish
Normal file
4
config/fish/functions/lgaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgd.fish
Normal file
4
config/fish/functions/lgd.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgi.fish
Normal file
4
config/fish/functions/lgi.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgi --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgi eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lgid.fish
Normal file
4
config/fish/functions/lgid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lgid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/li.fish
Normal file
4
config/fish/functions/li.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function li --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS' --description 'alias li eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lid.fish
Normal file
4
config/fish/functions/lid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS' --description 'alias lid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ll.fish
Normal file
4
config/fish/functions/ll.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ll --wraps=exa_git --description 'alias ll exa_git'
|
||||
exa_git $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lla.fish
Normal file
4
config/fish/functions/lla.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lla --wraps='exa_git $EXA_LA_OPTIONS' --description 'alias lla exa_git $EXA_LA_OPTIONS'
|
||||
exa_git $EXA_LA_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llaa.fish
Normal file
4
config/fish/functions/llaa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llaa --wraps='exa_git $EXA_LAA_OPTIONS' --description 'alias llaa exa_git $EXA_LAA_OPTIONS'
|
||||
exa_git $EXA_LAA_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llaad.fish
Normal file
4
config/fish/functions/llaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llaad --wraps='exa_git $EXA_LAAD_OPTIONS' --description 'alias llaad exa_git $EXA_LAAD_OPTIONS'
|
||||
exa_git $EXA_LAAD_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llaai.fish
Normal file
4
config/fish/functions/llaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llaai --wraps='exa_git $EXA_LAAI_OPTIONS' --description 'alias llaai exa_git $EXA_LAAI_OPTIONS'
|
||||
exa_git $EXA_LAAI_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llaaid.fish
Normal file
4
config/fish/functions/llaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llaaid --wraps='exa_git $EXA_LAAID_OPTIONS' --description 'alias llaaid exa_git $EXA_LAAID_OPTIONS'
|
||||
exa_git $EXA_LAAID_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llad.fish
Normal file
4
config/fish/functions/llad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llad --wraps='exa_git $EXA_LAD_OPTIONS' --description 'alias llad exa_git $EXA_LAD_OPTIONS'
|
||||
exa_git $EXA_LAD_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llai.fish
Normal file
4
config/fish/functions/llai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llai --wraps='exa_git $EXA_LAI_OPTIONS' --description 'alias llai exa_git $EXA_LAI_OPTIONS'
|
||||
exa_git $EXA_LAI_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llaid.fish
Normal file
4
config/fish/functions/llaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llaid --wraps='exa_git $EXA_LAID_OPTIONS' --description 'alias llaid exa_git $EXA_LAID_OPTIONS'
|
||||
exa_git $EXA_LAID_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lld.fish
Normal file
4
config/fish/functions/lld.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lld --wraps='exa_git $EXA_LD_OPTIONS' --description 'alias lld exa_git $EXA_LD_OPTIONS'
|
||||
exa_git $EXA_LD_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lli.fish
Normal file
4
config/fish/functions/lli.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lli --wraps='exa_git $EXA_LI_OPTIONS' --description 'alias lli exa_git $EXA_LI_OPTIONS'
|
||||
exa_git $EXA_LI_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/llid.fish
Normal file
4
config/fish/functions/llid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function llid --wraps='exa_git $EXA_LID_OPTIONS' --description 'alias llid exa_git $EXA_LID_OPTIONS'
|
||||
exa_git $EXA_LID_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lo.fish
Normal file
4
config/fish/functions/lo.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lo --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS' --description 'alias lo eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loa.fish
Normal file
4
config/fish/functions/loa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS' --description 'alias loa eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loaa.fish
Normal file
4
config/fish/functions/loaa.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loaad.fish
Normal file
4
config/fish/functions/loaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loaai.fish
Normal file
4
config/fish/functions/loaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loaaid.fish
Normal file
4
config/fish/functions/loaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/load.fish
Normal file
4
config/fish/functions/load.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function load --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS' --description 'alias load eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loai.fish
Normal file
4
config/fish/functions/loai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loaid.fish
Normal file
4
config/fish/functions/loaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lod.fish
Normal file
4
config/fish/functions/lod.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lod --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS' --description 'alias lod eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loi.fish
Normal file
4
config/fish/functions/loi.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loi --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loi eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/loid.fish
Normal file
4
config/fish/functions/loid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function loid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lt.fish
Normal file
4
config/fish/functions/lt.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lt --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS' --description 'alias lt eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lta.fish
Normal file
4
config/fish/functions/lta.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lta --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS' --description 'alias lta eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltaad.fish
Normal file
4
config/fish/functions/ltaad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltaai.fish
Normal file
4
config/fish/functions/ltaai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltaaid.fish
Normal file
4
config/fish/functions/ltaaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltad.fish
Normal file
4
config/fish/functions/ltad.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltai.fish
Normal file
4
config/fish/functions/ltai.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltaid.fish
Normal file
4
config/fish/functions/ltaid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltd.fish
Normal file
4
config/fish/functions/ltd.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/lti.fish
Normal file
4
config/fish/functions/lti.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function lti --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS' --description 'alias lti eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
4
config/fish/functions/ltid.fish
Normal file
4
config/fish/functions/ltid.fish
Normal file
@@ -0,0 +1,4 @@
|
||||
function ltid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS'
|
||||
eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS $argv
|
||||
|
||||
end
|
||||
@@ -29,6 +29,8 @@ brew "age"
|
||||
brew "ca-certificates"
|
||||
# Mozilla CA bundle for Python
|
||||
brew "certifi"
|
||||
# Cryptography and SSL/TLS Toolkit
|
||||
brew "openssl@3"
|
||||
# Cryptographic recipes and primitives for Python
|
||||
brew "cryptography"
|
||||
# YAML Parser
|
||||
@@ -47,8 +49,6 @@ brew "highway"
|
||||
brew "imath"
|
||||
# JPEG image codec that aids compression and decompression
|
||||
brew "jpeg-turbo"
|
||||
# Library for manipulating PNG images
|
||||
brew "libpng"
|
||||
# Zstandard is a real-time compression algorithm
|
||||
brew "zstd"
|
||||
# New file format for still image compression
|
||||
@@ -113,8 +113,6 @@ brew "enchant"
|
||||
brew "exiftool"
|
||||
# Banner-like program prints strings as ASCII art
|
||||
brew "figlet"
|
||||
# Text-based UI library
|
||||
brew "ncurses"
|
||||
# User-friendly command-line shell for UNIX-like operating systems
|
||||
brew "fish"
|
||||
# Lock file during command
|
||||
@@ -157,8 +155,6 @@ brew "gnutls"
|
||||
brew "gnupg"
|
||||
# Library access to GnuPG
|
||||
brew "gpgme"
|
||||
# Open source suite of directory software
|
||||
brew "openldap"
|
||||
# Manage your GnuPG keys with ease!
|
||||
brew "gpg-tui"
|
||||
# Image manipulation
|
||||
@@ -195,16 +191,12 @@ brew "legitify"
|
||||
brew "libedit"
|
||||
# Conversion library
|
||||
brew "libiconv"
|
||||
# Postgres C API library
|
||||
brew "libpq"
|
||||
# Version of the SSL/TLS protocol forked from OpenSSL
|
||||
brew "libressl"
|
||||
# Multi-platform support library with a focus on asynchronous I/O
|
||||
brew "libuv"
|
||||
# GNOME XML library
|
||||
brew "libxml2"
|
||||
# C library for reading, creating, and modifying zip archives
|
||||
brew "libzip"
|
||||
# Package manager for the Lua programming language
|
||||
brew "luarocks"
|
||||
# LZMA-based compression program similar to gzip or bzip2
|
||||
@@ -221,10 +213,14 @@ brew "nginx"
|
||||
brew "nmap"
|
||||
# Libraries for security-enabled client and server applications
|
||||
brew "nss"
|
||||
# Cryptography and SSL/TLS Toolkit
|
||||
brew "openssl@1.1"
|
||||
# Open source suite of directory software
|
||||
brew "openldap"
|
||||
# ISO-C API and CLI for generating UUIDs
|
||||
brew "ossp-uuid"
|
||||
# General-purpose scripting language
|
||||
brew "php@8.2"
|
||||
# Execute binaries from Python packages in isolated environments
|
||||
brew "pipx"
|
||||
# Python version management
|
||||
brew "pyenv"
|
||||
# Migrate pip packages from one Python version to another
|
||||
@@ -275,6 +271,8 @@ brew "doron-cohen/tap/antidot"
|
||||
brew "gesquive/tap/git-user"
|
||||
# Automated code review tool integrated with any code analysis tools regardless of programming language.
|
||||
brew "reviewdog/tap/reviewdog"
|
||||
# Igbinary PHP extension
|
||||
brew "shivammathur/extensions/igbinary@8.3"
|
||||
# Imagick PHP extension
|
||||
brew "shivammathur/extensions/imagick@8.3"
|
||||
# Mcrypt PHP extension
|
||||
@@ -293,20 +291,18 @@ brew "shivammathur/extensions/yaml@8.3"
|
||||
brew "shivammathur/php/php"
|
||||
# General-purpose scripting language
|
||||
brew "shivammathur/php/php-debug"
|
||||
# Find & fix known vulnerabilities in open-source dependencies
|
||||
brew "snyk/tap/snyk"
|
||||
# Command-line interface for 1Password
|
||||
cask "1password-cli"
|
||||
# AeroSpace is an i3-like tiling window manager for macOS
|
||||
cask "aerospace"
|
||||
# Text editor
|
||||
cask "coda"
|
||||
# Universal database tool and SQL client
|
||||
cask "dbeaver-community"
|
||||
# Database version management tool
|
||||
cask "dbngin"
|
||||
# App to build and share containerised applications and microservices
|
||||
cask "docker"
|
||||
# Calendar software
|
||||
cask "fantastical"
|
||||
cask "font-jetbrains-mono"
|
||||
cask "font-jetbrains-mono-nerd-font"
|
||||
cask "font-open-sans"
|
||||
@@ -326,8 +322,6 @@ cask "ngrok"
|
||||
cask "notunes"
|
||||
# Knowledge base that works on top of a local folder of plain text Markdown files
|
||||
cask "obsidian"
|
||||
# Display image info and preview unsupported formats in QuickLook
|
||||
cask "qlimagesize"
|
||||
# Quick Look generator for Markdown files
|
||||
cask "qlmarkdown"
|
||||
# Quick Look plugin for plaintext files without an extension
|
||||
|
||||
@@ -1,57 +1,203 @@
|
||||
"" Source your .vimrc
|
||||
"source ~/.vimrc
|
||||
|
||||
"" -- Suggested options --
|
||||
" Show a few lines of context around the cursor. Note that this makes the
|
||||
" text scroll if you mouse-click near the start or end of the window.
|
||||
set scrolloff=5
|
||||
" https://github.com/ville6000/dotfiles/blob/main/vimrc
|
||||
" To get a list of Actions run `:actionlist `
|
||||
let mapleader = "\<SPACE>"
|
||||
|
||||
set so=10
|
||||
set showmode
|
||||
set showcmd
|
||||
set smartcase
|
||||
set incsearch
|
||||
set hlsearch
|
||||
set relativenumber number
|
||||
|
||||
set clipboard+=unnamed
|
||||
|
||||
set ideajoin
|
||||
set ideamarks
|
||||
set idearefactormode=normal
|
||||
|
||||
" Map esc to :noh
|
||||
map <esc> :noh<cr>
|
||||
|
||||
nnoremap <leader>n :noh<return>
|
||||
|
||||
nmap j gj
|
||||
nmap k gk
|
||||
|
||||
nmap <leader>j :tabnext<CR>
|
||||
nmap <leader>k :tabprevious<CR>
|
||||
|
||||
nmap <leader>l b #<CR>
|
||||
:nmap <c-o> <Action>(Back)
|
||||
:nmap <c-i> <Action>(Forward)
|
||||
:map <leader>H <Action>(MethodUp)
|
||||
:map <leader>L <Action>(MethodDown)
|
||||
:map <leader>o <Action>(FileStructurePopup)
|
||||
:map <leader>m <Action>(ShowIntentionActions)
|
||||
|
||||
nmap <leader>ss <Action>(GotoSymbol)
|
||||
|
||||
" File management and navigation commands
|
||||
nmap <leader>fl <Action>(RecentLocations)
|
||||
nmap <leader>fc <Action>(FindInPath)
|
||||
nmap <leader>fr <Action>(RecentFiles)
|
||||
nmap <leader>fe :NERDTreeToggle<CR>
|
||||
nmap <Leader>fu :action FindUsages<CR>
|
||||
nmap <Leader>ff :action GotoFile<CR>
|
||||
nmap <leader>fi <Action>(SelectIn)
|
||||
nmap <leader>fp <Action>(ReplaceInPath)
|
||||
nmap <leader>fo <Action>(OpenFile)
|
||||
nmap <leader>fs <Action>(ManageRecentProjects)
|
||||
nmap <leader>fw <Action>(CloseActiveTab)
|
||||
|
||||
nmap <Leader>sr :action RecentFiles<CR>
|
||||
nmap <Leader>se :action SearchEverywhere<CR>
|
||||
nmap <leader>st <Action>(TextSearchAction)
|
||||
nmap <leader>ss <Action>(GotoSymbol)
|
||||
nmap <leader>sa <Action>(GotoAction)
|
||||
|
||||
" Find text
|
||||
nmap <Leader>ft :action FindText<CR>
|
||||
|
||||
nmap <leader>dx <Action>(Debug)
|
||||
nmap <leader>dc <Action>(ContextDebug)
|
||||
nmap <leader>dv <Action>(ViewBreakpoints)
|
||||
nmap <leader>de <Action>(EditBreakpoint)
|
||||
nmap <leader>dm <Action>(XDebugger.MuteBreakpoints)
|
||||
nmap <leader>dt <Action>(ToggleLineBreakpoint)
|
||||
nmap <leader>dC <Action>(RunToCursor)
|
||||
nmap <leader>di <Action>(StepInto)
|
||||
nmap <leader>do <Action>(StepOver)
|
||||
nmap <leader>dr <Action>(Resume)
|
||||
nmap <leader>dR <Action>(EvaluateExpression)
|
||||
nmap <leader>dw <Action>(ActivateDebugToolWindow)
|
||||
|
||||
nmap <leader>gd <Action>(GotoDeclaration)
|
||||
nmap <leader>go <Action>(GotoSuperMethod)
|
||||
nmap <leader>gD <Action>(GotoTypeDeclaration)
|
||||
nmap <leader>gi <Action>(GotoImplementation)
|
||||
nmap <leader>gT <Action>(GotoTest)
|
||||
nmap <leader>gp :action VcsShowPrevChangeMarker<CR>
|
||||
nmap <leader>gn :action VcsShowNextChangeMarker<CR>
|
||||
|
||||
" Trigger tests
|
||||
map <Leader>tt <Action>(RiderUnitTestRunContextAction)
|
||||
let g:WhichKeyDesc_tests = "<leader>t Tests"
|
||||
let g:WhichKeyDesc_tests_run = "<leader>tt Run Tests"
|
||||
|
||||
nmap <Leader>cc :action CommentByLineComment<CR>
|
||||
|
||||
nmap <leader>lf <Action>(ReformatCode)
|
||||
nmap <leader>li <Action>(InspectCode)
|
||||
:map <leader>lr <Action>(RenameElement)
|
||||
nmap <leader>ll <Action>(Refactorings.QuickListPopupAction)
|
||||
|
||||
nmap <leader>Gc <Action>(Vcs.Show.Local.Changes)
|
||||
nmap <leader>Ga <Action>(Annotate)
|
||||
|
||||
:map <leader>gh <Action>(ShowHoverInfo)
|
||||
|
||||
nmap <Leader>vv :vsplit<CR>
|
||||
nmap <Leader>vs :split<CR>
|
||||
|
||||
nmap <Leader>ww :action HideAllWindows<CR>
|
||||
nmap <Leader>wt :action ActivateTerminalToolWindow<CR>
|
||||
nmap <Leader>wd :action ActivateDatabaseToolWindow<CR>
|
||||
|
||||
" Open project tree window
|
||||
nmap <Leader>e :action ActivateProjectToolWindow<CR>
|
||||
|
||||
nnoremap <leader>cf :action ReformatCode<CR>
|
||||
|
||||
" Bookmarks
|
||||
nmap <leader>bm <Action>(Bookmarks)
|
||||
nmap <leader>bs <Action>(ShowBookmarks)
|
||||
nmap <leader>bt <Action>(ActivateBookmarksToolWindow)
|
||||
nmap <leader>bb <Action>(ToggleBookmark)
|
||||
nmap <leader>be <Action>(EditBookmark)
|
||||
nmap <leader>bp <Action>(GotoPreviousBookmark)
|
||||
nmap <leader>bn <Action>(GotoNextBookmark)
|
||||
|
||||
nnoremap ge :action GotoNextError<CR>
|
||||
nnoremap gE :action GotoPreviousError<CR>
|
||||
|
||||
" Turn off Copilot
|
||||
nmap <leader>cp :action Copilot.Toggle<CR>
|
||||
|
||||
" Disable timeout for which-key
|
||||
set notimeout
|
||||
|
||||
" Navigate back
|
||||
nmap <leader> <C-o>
|
||||
|
||||
" mark as a global mark/
|
||||
nnoremap ma mA
|
||||
nnoremap mb mB
|
||||
nnoremap mc mC
|
||||
nnoremap md mD
|
||||
nnoremap me mE
|
||||
nnoremap mf mG
|
||||
nnoremap mh mH
|
||||
nnoremap mi mI
|
||||
nnoremap mj mJ
|
||||
nnoremap mk mK
|
||||
nnoremap ml mL
|
||||
nnoremap mm mM
|
||||
nnoremap mn mN
|
||||
nnoremap mo mO
|
||||
nnoremap mp mP
|
||||
nnoremap mq mQ
|
||||
nnoremap mr mR
|
||||
nnoremap ms mS
|
||||
nnoremap mt mT
|
||||
nnoremap mu mU
|
||||
nnoremap mv mV
|
||||
nnoremap mw mW
|
||||
nnoremap mx mX
|
||||
nnoremap my mY
|
||||
nnoremap mz mZ
|
||||
|
||||
" go to global marks
|
||||
nnoremap 'a `A
|
||||
nnoremap 'b `B
|
||||
nnoremap 'c `C
|
||||
nnoremap 'd `D
|
||||
nnoremap 'e `E
|
||||
nnoremap 'f `G
|
||||
nnoremap 'h `H
|
||||
nnoremap 'i `I
|
||||
nnoremap 'j `J
|
||||
nnoremap 'k `K
|
||||
nnoremap 'l `L
|
||||
nnoremap 'm `M
|
||||
nnoremap 'n `N
|
||||
nnoremap 'o `O
|
||||
nnoremap 'p `P
|
||||
nnoremap 'q `Q
|
||||
nnoremap 'r `R
|
||||
nnoremap 's `S
|
||||
nnoremap 't `T
|
||||
nnoremap 'u `U
|
||||
nnoremap 'v `V
|
||||
nnoremap 'w `W
|
||||
nnoremap 'x `X
|
||||
nnoremap 'y `Y
|
||||
nnoremap 'z `Z
|
||||
|
||||
" ---
|
||||
|
||||
set cursorline " Highlight current line
|
||||
set nocompatible " disable compatibility mode with vi
|
||||
filetype off " disable filetype detection (but re-enable later, see below)
|
||||
set undolevels=1000 " Number of undo levels
|
||||
set backspace=indent,eol,start " Backspace behaviour
|
||||
|
||||
" Don't use Ex mode, use Q for formatting.
|
||||
map Q gq
|
||||
|
||||
|
||||
"" -- Map IDE actions to IdeaVim -- https://jb.gg/abva4t
|
||||
"" Map \r to the Reformat Code action
|
||||
"map \r <Action>(ReformatCode)
|
||||
|
||||
"" Map <leader>d to start debug
|
||||
"map <leader>d <Action>(Debug)
|
||||
|
||||
"" Map \b to toggle the breakpoint on the current line
|
||||
"map \b <Action>(ToggleLineBreakpoint)
|
||||
|
||||
|
||||
" Find more examples here: https://jb.gg/share-ideavimrc
|
||||
|
||||
" https://github.com/ville6000/dotfiles/blob/main/vimrc
|
||||
set nocompatible " disable compatibility mode with vi
|
||||
filetype off " disable filetype detection (but re-enable later, see below)
|
||||
|
||||
set encoding=utf-8 " UTF-8
|
||||
set number " Show line numbers
|
||||
set laststatus=2 " Always show statusline (even with only single window)
|
||||
set showmatch " Highlight matching brace
|
||||
set visualbell " Use visual bell (no beeping)
|
||||
set hlsearch " Highlight all search results
|
||||
set smartcase " Enable smart-case search
|
||||
set ignorecase " Always case-insensitive
|
||||
set incsearch " Searches for strings incrementally
|
||||
set cindent " Use 'C' style program indenting
|
||||
set expandtab " Use spaces instead of tabs
|
||||
set shiftwidth=4 " Number of auto-indent spaces
|
||||
set smartindent " Enable smart-indent
|
||||
set smarttab " Enable smart-tabs
|
||||
set softtabstop=4 " Number of spaces per Tab
|
||||
set ruler " Show row and column ruler information
|
||||
set cursorline " Highlight current line
|
||||
set undolevels=1000 " Number of undo levels
|
||||
set backspace=indent,eol,start " Backspace behaviour
|
||||
set so=5
|
||||
|
||||
" move vertically by visual line (don't skip wrapped lines)
|
||||
nmap j gj
|
||||
nmap k gk
|
||||
|
||||
syntax enable
|
||||
filetype plugin indent on
|
||||
|
||||
@@ -63,9 +209,6 @@ Plug 'ctrlpvim/ctrlp.vim'
|
||||
call plug#end()
|
||||
|
||||
set termguicolors
|
||||
set background=dark
|
||||
let ayucolor="dark"
|
||||
colorscheme ayu
|
||||
|
||||
if has('gui_running')
|
||||
set macligatures
|
||||
|
||||
@@ -95,6 +95,11 @@ bind Escape copy-mode
|
||||
unbind p
|
||||
bind p paste-buffer
|
||||
|
||||
# tms bindings
|
||||
bind C-f display-popup -E "tms"
|
||||
bind C-w display-popup -E "tms windows"
|
||||
bind C-s display-popup -E "tms switch"
|
||||
bind C-r display-popup -E "tms refresh"
|
||||
|
||||
# ╭──────────────────────────────────────────────────────────╮
|
||||
# │ Plugins │
|
||||
@@ -132,24 +137,26 @@ set -g @mode_indicator_sync_mode_style 'bg=default,fg=red'
|
||||
set -g @fzf-url-bind 'u'
|
||||
set -g @fzf-url-history-limit '2000'
|
||||
|
||||
# ── Sourcing the plugins ──────────────────────────────────────────────
|
||||
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-sensible/sensible.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-window-name/tmux_window_name.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-mode-indicator/mode_indicator.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-suspend/suspend.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-continuum/continuum.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-sessionist/sessionist.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-yank/yank.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-current-pane-hostname/current_pane_hostname.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-dark-notify/main.tmux"
|
||||
run-shell "$HOME/.config/tmux/plugins/tmux-fzf-url/fzf-url.tmux"
|
||||
# ── Own scripts ───────────────────────────────────────────────────────
|
||||
|
||||
# If we started tmux with a session name, rename it.
|
||||
run-shell "$HOME/.dotfiles/config/tmux/rename-session.sh"
|
||||
|
||||
# Load theme based on tmux-dark-notify state.
|
||||
# This script helps states where dark-notify is not available,
|
||||
# and we want to have light or dark state constantly available.
|
||||
run-shell "$HOME/.config/tmux/theme-activate.sh"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/theme-activate.sh"
|
||||
|
||||
# If we started tmux with a session name, rename it.
|
||||
run-shell "$HOME/.config/tmux/rename-session.sh"
|
||||
# ── Sourcing the plugins ──────────────────────────────────────────────
|
||||
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-sensible/sensible.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-window-name/tmux_window_name.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-mode-indicator/mode_indicator.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-suspend/suspend.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-continuum/continuum.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-sessionist/sessionist.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-yank/yank.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-current-pane-hostname/current_pane_hostname.tmux"
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-fzf-url/fzf-url.tmux"
|
||||
|
||||
run-shell "$HOME/.dotfiles/config/tmux/plugins/tmux-dark-notify/main.tmux"
|
||||
|
||||
0
hosts/s/.gitkeep
Normal file
0
hosts/s/.gitkeep
Normal file
3
hosts/s/README.md
Normal file
3
hosts/s/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# .dotfiles/hosts/s
|
||||
|
||||
This is my work computer.
|
||||
0
hosts/s/base/.gitkeep
Normal file
0
hosts/s/base/.gitkeep
Normal file
0
hosts/s/config/.gitkeep
Normal file
0
hosts/s/config/.gitkeep
Normal file
2
hosts/s/config/git/local.d/work-git
Normal file
2
hosts/s/config/git/local.d/work-git
Normal file
@@ -0,0 +1,2 @@
|
||||
Host tfs.ia.corp.svea.com
|
||||
IdentityFile ~/.ssh/id_rsa
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user