mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
Compare commits
3 commits
a7f1039241
...
9f5692e46c
Author | SHA1 | Date | |
---|---|---|---|
9f5692e46c | |||
a244e514bb | |||
81c3ee732b |
7 changed files with 240 additions and 1 deletions
185
.config/fish/completions/bun.fish
Normal file
185
.config/fish/completions/bun.fish
Normal file
|
@ -0,0 +1,185 @@
|
||||||
|
# This is terribly complicated
|
||||||
|
# It's because:
|
||||||
|
# 1. bun run has to have dynamic completions
|
||||||
|
# 2. there are global options
|
||||||
|
# 3. bun {install add remove} gets special options
|
||||||
|
# 4. I don't know how to write fish completions well
|
||||||
|
# Contributions very welcome!!
|
||||||
|
|
||||||
|
function __fish__get_bun_bins
|
||||||
|
string split ' ' (bun getcompletes b)
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish__get_bun_scripts
|
||||||
|
set -lx SHELL bash
|
||||||
|
set -lx MAX_DESCRIPTION_LEN 40
|
||||||
|
string trim (string split '\n' (string split '\t' (bun getcompletes z)))
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish__get_bun_packages
|
||||||
|
if test (commandline -ct) != ""
|
||||||
|
set -lx SHELL fish
|
||||||
|
string split ' ' (bun getcompletes a (commandline -ct))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function __history_completions
|
||||||
|
set -l tokens (commandline --current-process --tokenize)
|
||||||
|
history --prefix (commandline) | string replace -r \^$tokens[1]\\s\* "" | string replace -r \^$tokens[2]\\s\* "" | string split ' '
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish__get_bun_bun_js_files
|
||||||
|
string split ' ' (bun getcompletes j)
|
||||||
|
end
|
||||||
|
|
||||||
|
set -l bun_install_boolean_flags yarn production optional development no-save dry-run force no-cache silent verbose global
|
||||||
|
set -l bun_install_boolean_flags_descriptions "Write a yarn.lock file (yarn v1)" "Don't install devDependencies" "Add dependency to optionalDependencies" "Add dependency to devDependencies" "Don't install devDependencies" "Don't install anything" "Always request the latest versions from the registry & reinstall all dependencies" "Ignore manifest cache entirely" "Don't output anything" "Excessively verbose logging" "Use global folder"
|
||||||
|
|
||||||
|
set -l bun_builtin_cmds_without_run dev create help bun upgrade discord install remove add init pm x
|
||||||
|
set -l bun_builtin_cmds_accepting_flags create help bun upgrade discord run init link unlink pm x
|
||||||
|
|
||||||
|
function __bun_complete_bins_scripts --inherit-variable bun_builtin_cmds_without_run -d "Emit bun completions for bins and scripts"
|
||||||
|
# Do nothing if we already have a builtin subcommand,
|
||||||
|
# or any subcommand other than "run".
|
||||||
|
if __fish_seen_subcommand_from $bun_builtin_cmds_without_run
|
||||||
|
or not __fish_use_subcommand && not __fish_seen_subcommand_from run
|
||||||
|
return
|
||||||
|
end
|
||||||
|
# Do we already have a bin or script subcommand?
|
||||||
|
set -l bins (__fish__get_bun_bins)
|
||||||
|
if __fish_seen_subcommand_from $bins
|
||||||
|
return
|
||||||
|
end
|
||||||
|
# Scripts have descriptions appended with a tab separator.
|
||||||
|
# Strip off descriptions for the purposes of subcommand testing.
|
||||||
|
set -l scripts (__fish__get_bun_scripts)
|
||||||
|
if __fish_seen_subcommand_from (string split \t -f 1 -- $scripts)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
# Emit scripts.
|
||||||
|
for script in $scripts
|
||||||
|
echo $script
|
||||||
|
end
|
||||||
|
# Emit binaries and JS files (but only if we're doing `bun run`).
|
||||||
|
if __fish_seen_subcommand_from run
|
||||||
|
for bin in $bins
|
||||||
|
echo "$bin"\t"package bin"
|
||||||
|
end
|
||||||
|
for file in (__fish__get_bun_bun_js_files)
|
||||||
|
echo "$file"\t"Bun.js"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
# Clear existing completions
|
||||||
|
complete -e -c bun
|
||||||
|
|
||||||
|
# Dynamically emit scripts and binaries
|
||||||
|
complete -c bun -f -a "(__bun_complete_bins_scripts)"
|
||||||
|
|
||||||
|
# Complete flags if we have no subcommand or a flag-friendly one.
|
||||||
|
set -l flag_applies "__fish_use_subcommand; or __fish_seen_subcommand_from $bun_builtin_cmds_accepting_flags"
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -s 'u' -l 'origin' -r -d 'Server URL. Rewrites import paths'
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -s 'p' -l 'port' -r -d 'Port number to start server from'
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -s 'd' -l 'define' -r -d 'Substitute K:V while parsing, e.g. --define process.env.NODE_ENV:\"development\"'
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -s 'e' -l 'external' -r -d 'Exclude module from transpilation (can use * wildcards). ex: -e react'
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -l 'use' -r -d 'Use a framework (ex: next)'
|
||||||
|
complete -c bun \
|
||||||
|
-n $flag_applies --no-files -l 'hot' -r -d 'Enable hot reloading in Bun\'s JavaScript runtime'
|
||||||
|
|
||||||
|
# Complete dev and create as first subcommand.
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'dev' -d 'Start dev server'
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'create' -f -d 'Create a new project from a template'
|
||||||
|
|
||||||
|
# Complete "next" and "react" if we've seen "create".
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from create" -a 'next' -d 'new Next.js project'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from create" -a 'react' -d 'new React project'
|
||||||
|
|
||||||
|
# Complete "upgrade" as first subcommand.
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'upgrade' -d 'Upgrade bun to the latest version' -x
|
||||||
|
# Complete "-h/--help" unconditionally.
|
||||||
|
complete -c bun \
|
||||||
|
-s "h" -l "help" -d 'See all commands and flags' -x
|
||||||
|
|
||||||
|
# Complete "-v/--version" if we have no subcommand.
|
||||||
|
complete -c bun \
|
||||||
|
-n "not __fish_use_subcommand" -l "version" -s "v" -d 'Bun\'s version' -x
|
||||||
|
|
||||||
|
# Complete additional subcommands.
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'discord' -d 'Open bun\'s Discord server' -x
|
||||||
|
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'bun' -d 'Generate a new bundle'
|
||||||
|
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from bun" -F -d 'Bundle this'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from create; and __fish_seen_subcommand_from react next" -F -d "Create in directory"
|
||||||
|
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'init' -F -d 'Start an empty Bun project'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'install' -f -d 'Install packages from package.json'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'add' -F -d 'Add a package to package.json'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_use_subcommand" -a 'remove' -F -d 'Remove a package from package.json'
|
||||||
|
|
||||||
|
|
||||||
|
for i in (seq (count $bun_install_boolean_flags))
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from install add remove" -l "$bun_install_boolean_flags[$i]" -d "$bun_install_boolean_flags_descriptions[$i]"
|
||||||
|
end
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from install add remove" -l 'cwd' -d 'Change working directory'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from install add remove" -l 'cache-dir' -d 'Choose a cache directory (default: $HOME/.bun/install/cache)'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from add" -d 'Popular' -a '(__fish__get_bun_packages)'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from add" -d 'History' -a '(__history_completions)'
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from pm; and not __fish_seen_subcommand_from (__fish__get_bun_bins) (__fish__get_bun_scripts) cache;" -a 'bin ls cache hash hash-print hash-string' -f
|
||||||
|
|
||||||
|
complete -c bun \
|
||||||
|
-n "__fish_seen_subcommand_from pm; and __fish_seen_subcommand_from cache; and not __fish_seen_subcommand_from (__fish__get_bun_bins) (__fish__get_bun_scripts);" -a 'rm' -f
|
||||||
|
|
||||||
|
# Add built-in subcommands with descriptions.
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "create" -f -d "Create a new project from a template"
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "build bun" --require-parameter -F -d "Transpile and bundle one or more files"
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "upgrade" -d "Upgrade Bun"
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "run" -d "Run a script or package binary"
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "install" -d "Install dependencies from package.json" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "remove" -d "Remove a dependency from package.json" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "add" -d "Add a dependency to package.json" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "init" -d "Initialize a Bun project in this directory" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "link" -d "Register or link a local npm package" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "unlink" -d "Unregister a local npm package" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "pm" -d "Additional package management utilities" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "x" -d "Execute a package binary, installing if needed" -f
|
||||||
|
complete -c bun -n "__fish_use_subcommand" -a "outdated" -d "Display the latest versions of outdated dependencies" -f
|
3
.config/fish/conf.d/android.fish
Normal file
3
.config/fish/conf.d/android.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
set -x ANDROID_SDK_ROOT /opt/android-sdk
|
||||||
|
|
||||||
|
fish_add_path -g /opt/android-sdk/cmdline-tools/latest/bin
|
|
@ -4,7 +4,6 @@ alias ls="lsd"
|
||||||
alias cat="bat"
|
alias cat="bat"
|
||||||
alias s="kitten ssh"
|
alias s="kitten ssh"
|
||||||
|
|
||||||
|
|
||||||
fish_add_path -g ~/.bun/bin ~/.local/bin ~/go/bin ~/.wakatime ~/.rbenv/shims ~/.moon/bin ~/.cargo/bin ~/.fvm_flutter/bin
|
fish_add_path -g ~/.bun/bin ~/.local/bin ~/go/bin ~/.wakatime ~/.rbenv/shims ~/.moon/bin ~/.cargo/bin ~/.fvm_flutter/bin
|
||||||
|
|
||||||
# Added by `rbenv init` on Tue 27 Aug 15:42:29 CEST 2024
|
# Added by `rbenv init` on Tue 27 Aug 15:42:29 CEST 2024
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
include ~/.config/sway/*.swayconf
|
include ~/.config/sway/*.swayconf
|
||||||
|
|
||||||
|
output HDMI-A-1 pos 0 0 res 1920x1080@144Hz
|
||||||
|
output eDP-1 pos 1920 0 res 1920x1080@120Hz
|
||||||
|
|
||||||
# background
|
# background
|
||||||
output * bg ~/Pictures/Th0q7eQ.jpg fill
|
output * bg ~/Pictures/Th0q7eQ.jpg fill
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
# vim:ft=swayconfig
|
# vim:ft=swayconfig
|
||||||
|
|
||||||
|
# monitor
|
||||||
|
exec_always {
|
||||||
|
xrandr --output HDMI-A-1 --primary
|
||||||
|
}
|
||||||
|
|
||||||
# gtk themes
|
# gtk themes
|
||||||
exec_always {
|
exec_always {
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
||||||
|
|
21
.config/zed/keymap.json
Normal file
21
.config/zed/keymap.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
// Zed keymap
|
||||||
|
//
|
||||||
|
// For information on binding keys, see the Zed
|
||||||
|
// documentation: https://zed.dev/docs/key-bindings
|
||||||
|
//
|
||||||
|
// To see the default key bindings run `zed: Open Default Keymap`
|
||||||
|
// from the command palette.
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"context": "Workspace",
|
||||||
|
"bindings": {
|
||||||
|
// "shift shift": "file_finder::Toggle"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "Editor",
|
||||||
|
"bindings": {
|
||||||
|
// "j k": ["workspace::SendKeystrokes", "escape"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
|
@ -27,6 +27,29 @@
|
||||||
"diagnostics": true,
|
"diagnostics": true,
|
||||||
"formatting": false
|
"formatting": false
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"ruff": {
|
||||||
|
"initialization_options": {
|
||||||
|
"settings": {
|
||||||
|
// Ruff server settings goes here
|
||||||
|
"lineLength": 80,
|
||||||
|
"lint": {
|
||||||
|
"extendSelect": ["I"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"languages": {
|
||||||
|
"Python": {
|
||||||
|
"language_servers": ["pyright", "ruff"],
|
||||||
|
"formatter": {
|
||||||
|
"external": {
|
||||||
|
"command": "/home/hyro/.local/share/zed/extensions/work/ruff/ruff-0.6.3/ruff-x86_64-unknown-linux-gnu/ruff",
|
||||||
|
"arguments": ["format", "-"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"format_on_save": "on"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
|
|
Loading…
Reference in a new issue