save
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
[general]
|
||||
import = []
|
||||
|
||||
[colors.primary]
|
||||
background = "#181818"
|
||||
foreground = "#E4E4E4"
|
||||
|
||||
[colors.normal]
|
||||
black = "#181818"
|
||||
|
||||
red = "#F43841"
|
||||
green = "#73D936"
|
||||
yellow = "#FFDD33"
|
||||
blue = "#96A6C8"
|
||||
magenta = "#9E95C7"
|
||||
cyan = "#95A99F"
|
||||
white = "#E4E4E4"
|
||||
|
||||
[colors.bright]
|
||||
black = "#52494E"
|
||||
red = "#FF4F58"
|
||||
green = "#73D936"
|
||||
yellow = "#FFDD33"
|
||||
blue = "#96A6C8"
|
||||
magenta = "#AFAFD7"
|
||||
cyan = "#95A99F"
|
||||
white = "#F5F5F5"
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color"
|
||||
|
||||
[font]
|
||||
normal = { family = "ComicShannsMono Nerd Font", style = "Regular" }
|
||||
bold = { family = "ComicShannsMono Nerd Font", style = "Bold" }
|
||||
italic = { family = "ComicShannsMono Nerd Font", style = "Italic" }
|
||||
size = 9
|
||||
|
||||
[window]
|
||||
padding = { x = 14, y = 14 }
|
||||
decorations = "none"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "F11"
|
||||
action = "ToggleFullscreen"
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
iwctl station connect wlan0 RCS
|
||||
@@ -1,62 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: $0 [java-source]
|
||||
|
||||
prog_name=$(basename $0)
|
||||
tool_version="beta"
|
||||
year=2025
|
||||
|
||||
fatal() {
|
||||
echo "fatal: $*" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
run() {
|
||||
"$@" || fatal "could not run: $*"
|
||||
}
|
||||
|
||||
print_help() {
|
||||
cat <<EOF
|
||||
Usage: $prog_name [java-source]...
|
||||
|
||||
--help print this help and exit.
|
||||
--version print version information.
|
||||
|
||||
--save-temps don't clean up all intermediate steps
|
||||
EOF
|
||||
}
|
||||
|
||||
print_version() {
|
||||
cat <<EOF
|
||||
$prog_name $tool_version $(git rev-list --count --all 2>/dev/null || echo 0)
|
||||
Copyright (C) $year vx-clutch.
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
EOF
|
||||
}
|
||||
|
||||
clean=true
|
||||
cleanup() {
|
||||
local class=$1
|
||||
$clean && rm $class.class
|
||||
}
|
||||
|
||||
runner() {
|
||||
local class=$1
|
||||
class="${class%.java}"
|
||||
run javac $class.java
|
||||
run java $class
|
||||
cleanup $class
|
||||
}
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--help) print_help; exit 0 ;;
|
||||
--version) print_version; exit 0 ;;
|
||||
--save-temps) clean=false ;;
|
||||
*)
|
||||
runner $1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
@@ -1,136 +0,0 @@
|
||||
#!/bin/sh
|
||||
# vx.jnew - Create a java project
|
||||
#
|
||||
# FEATURES:
|
||||
# - Generate single-file project
|
||||
#
|
||||
# COMPILATION (Linux - POSIX):
|
||||
# ./jnew
|
||||
#
|
||||
#
|
||||
# LICENSE: BSD-3-Clause
|
||||
#
|
||||
# Copyright (c) 2025 VX
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright notice, this
|
||||
# list of conditions and the following disclaimer.
|
||||
#
|
||||
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
# this list of conditions and the following disclaimer in the documentation
|
||||
# and/or other materials provided with the distribution.
|
||||
#
|
||||
# 3. Neither the name of the copyright holder nor the names of its
|
||||
# contributors may be used to endorse or promote products derived from
|
||||
# this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
me=$0
|
||||
scriptversion="1.0.0"
|
||||
|
||||
version="$me $scriptversion
|
||||
|
||||
Copyright (C) 2025 VX.
|
||||
|
||||
This is free software; you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law."
|
||||
|
||||
usage="\
|
||||
Usage: $me [project] [OPTION]...
|
||||
Generate a java project
|
||||
|
||||
Options:
|
||||
--class generate a class only file
|
||||
|
||||
--help print this help and exit
|
||||
--version output version information"
|
||||
|
||||
classonly=false
|
||||
classname=
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case $1 in
|
||||
--help)
|
||||
echo "$usage"
|
||||
exit 0
|
||||
;;
|
||||
--version)
|
||||
echo "$version"
|
||||
exit 0
|
||||
;;
|
||||
--class)
|
||||
classonly=true
|
||||
;;
|
||||
-*)
|
||||
echo "$me: unknown option '$1'" >&2
|
||||
echo "Try '$me --help' for more information." >&2
|
||||
exit 1
|
||||
;;
|
||||
*)
|
||||
classname=$1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ -z "$classname" ]; then
|
||||
echo "$me: missing project name" >&2
|
||||
echo "Try '$me --help' for more information." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
firstchar=$(printf '%s' "$classname" | cut -c1 | tr '[:lower:]' '[:upper:]')
|
||||
restchars=$(printf '%s' "$classname" | cut -c2-)
|
||||
classname="${firstchar}${restchars}"
|
||||
|
||||
file="${classname}.java"
|
||||
|
||||
if [ -e "$file" ]; then
|
||||
echo "$me: file '$file' already exists" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cat <<EOF >"$file"
|
||||
/*
|
||||
* Short description
|
||||
*
|
||||
* Author: Owen Westness <vx-clutch>
|
||||
* Date: $(date +"%B %d, %Y")
|
||||
* License: MIT
|
||||
*/
|
||||
|
||||
public class $classname {
|
||||
EOF
|
||||
|
||||
if $classonly; then
|
||||
cat <<EOF >>"$file"
|
||||
public $classname() {
|
||||
// Your code here...
|
||||
}
|
||||
EOF
|
||||
else
|
||||
cat <<EOF >>"$file"
|
||||
public static void main(String[] args) {
|
||||
// Your code here...
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
|
||||
printf '}\n' >>"$file"
|
||||
|
||||
echo "Created $file"
|
||||
|
||||
# End: jnew
|
||||
@@ -1,37 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: prog | $0
|
||||
|
||||
prog_name=$(basename $0)
|
||||
tool_version="1.0"
|
||||
year=2025
|
||||
|
||||
print_help() {
|
||||
cat <<EOF
|
||||
Usage: $prog_name
|
||||
|
||||
--help print this help and exit.
|
||||
--version print version information.
|
||||
EOF
|
||||
}
|
||||
|
||||
print_version() {
|
||||
cat <<EOF
|
||||
$prog_name $tool_version $(git rev-list --count --all 2>/dev/null || echo 0)
|
||||
Copyright (C) $year vx-clutch.
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
EOF
|
||||
}
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--help) print_help; exit 0 ;;
|
||||
--version) print_version; exit 0 ;;
|
||||
*) ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
read s
|
||||
echo "$s" | tr '[:upper:]' '[:lower:]'
|
||||
@@ -1,53 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: $0 [name]
|
||||
|
||||
prog_name=$(basename $0)
|
||||
tool_version="1.0"
|
||||
year=2025
|
||||
|
||||
fatal() {
|
||||
echo "fatal: $*" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
print_help() {
|
||||
cat <<EOF
|
||||
Usage: $prog_name [name]...
|
||||
|
||||
--help print this help and exit.
|
||||
--version print version information.
|
||||
EOF
|
||||
}
|
||||
|
||||
print_version() {
|
||||
cat <<EOF
|
||||
$prog_name $tool_version $(git rev-list --count --all 2>/dev/null || echo 0)
|
||||
Copyright (C) $year vx-clutch.
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
EOF
|
||||
}
|
||||
|
||||
new_proj() {
|
||||
local prj=$1
|
||||
mkdir -p $HOME/probe/$prj &&
|
||||
echo "cd $HOME/probe/$prj"
|
||||
}
|
||||
|
||||
if [ "$#" -eq 0 ]; then
|
||||
read -p "(project) " rp
|
||||
new_proj $rp
|
||||
exit 0
|
||||
fi
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--help) print_help; exit 0 ;;
|
||||
--version) print_version; exit 0 ;;
|
||||
*)
|
||||
new_proj $1; exit 0
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
@@ -1,37 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: prog | $0
|
||||
|
||||
prog_name=$(basename $0)
|
||||
tool_version="1.0"
|
||||
year=2025
|
||||
|
||||
print_help() {
|
||||
cat <<EOF
|
||||
Usage: $prog_name
|
||||
|
||||
--help print this help and exit.
|
||||
--version print version information.
|
||||
EOF
|
||||
}
|
||||
|
||||
print_version() {
|
||||
cat <<EOF
|
||||
$prog_name $tool_version $(git rev-list --count --all 2>/dev/null || echo 0)
|
||||
Copyright (C) $year vx-clutch.
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
EOF
|
||||
}
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--help) print_help; exit 0 ;;
|
||||
--version) print_version; exit 0 ;;
|
||||
*) ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
read s
|
||||
echo "$s" | tr '[:lower:]' '[:upper:]'
|
||||
@@ -1,2 +0,0 @@
|
||||
# Extra autostart processes
|
||||
# exec-once = uwsm app -- my-service
|
||||
@@ -1,15 +0,0 @@
|
||||
# Application bindings
|
||||
$terminal = uwsm app -- $TERMINAL
|
||||
$browser = omarchy-launch-browser
|
||||
|
||||
bindd = SUPER, RETURN, Terminal, exec, $terminal --dir="$(omarchy-cmd-terminal-cwd)"
|
||||
bindd = SUPER, F, File manager, exec, uwsm app -- nautilus --new-window
|
||||
bindd = SUPER , B, Browser, exec, $browser
|
||||
bindd = SUPER SHIFT, B, Browser (private), exec, $browser --private
|
||||
bindd = SUPER SHIFT, T, Activity, exec, $terminal -e btop
|
||||
bindd = SUPER, D, Discord, exec, discord
|
||||
|
||||
# If your web app url contains #, type it as ## to prevent hyperland treat it as comments
|
||||
bindd = SUPER SHIFT, A, ChatGPT, exec, omarchy-launch-webapp "https://chatgpt.com"
|
||||
bindd = SUPER SHIFT, G, GitHub, exec, omarchy-launch-webapp "https://github.com"
|
||||
bindd = SUPER SHIFT, Y, YouTube, exec, omarchy-launch-or-focus-webapp YouTube "https://youtube.com/"
|
||||
@@ -1,15 +0,0 @@
|
||||
# Application bindings
|
||||
$terminal = uwsm app -- $TERMINAL
|
||||
$browser = omarchy-launch-browser
|
||||
|
||||
bindd = SUPER, return, Terminal, exec, $terminal --working-directory="$(omarchy-cmd-terminal-cwd)"
|
||||
bindd = SUPER, F, File manager, exec, uwsm app -- nautilus --new-window
|
||||
bindd = SUPER, B, Browser, exec, $browser
|
||||
bindd = SUPER SHIFT, B, Browser (private), exec, $browser --private
|
||||
bindd = SUPER, T, Activity, exec, $terminal -e btop
|
||||
bindd = SUPER, D, Discord, exec, discord
|
||||
|
||||
# If your web app url contains #, type it as ## to prevent hyperland treat it as comments
|
||||
bindd = SUPER, A, ChatGPT, exec, omarchy-launch-webapp "https://chatgpt.com"
|
||||
bindd = SUPER, G, GitHub, exec, omarchy-launch-webapp "https://github.com"
|
||||
bindd = SUPER, Y, YouTube, exec, omarchy-launch-or-focus-webapp YouTube "https://youtube.com/"
|
||||
@@ -1,2 +0,0 @@
|
||||
# Extra env variables
|
||||
# env = MY_GLOBAL_ENV,setting
|
||||
@@ -1,22 +0,0 @@
|
||||
general {
|
||||
lock_cmd = omarchy-lock-screen # lock screen and 1password
|
||||
before_sleep_cmd = loginctl lock-session # lock before suspend.
|
||||
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
|
||||
inhibit_sleep = 3 # wait until screen is locked
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 150 # 2.5min
|
||||
on-timeout = pidof hyprlock || omarchy-launch-screensaver # start screensaver (if we haven't locked already)
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 300 # 5min
|
||||
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 330 # 5.5min
|
||||
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
||||
on-resume = hyprctl dispatch dpms on && brightnessctl -r # screen on when activity is detected
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
# Learn how to configure Hyprland: https://wiki.hyprland.org/Configuring/
|
||||
|
||||
# Use defaults Omarchy defaults (but don't edit these directly!)
|
||||
source = ~/.local/share/omarchy/default/hypr/autostart.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/bindings/media.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/bindings/clipboard.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/bindings/tiling-v2.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/bindings/utilities.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/envs.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/looknfeel.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/input.conf
|
||||
source = ~/.local/share/omarchy/default/hypr/windows.conf
|
||||
source = ~/.config/omarchy/current/theme/hyprland.conf
|
||||
|
||||
# Change your own setup in these files (and overwrite any settings from defaults!)
|
||||
source = ~/.config/hypr/monitors.conf
|
||||
source = ~/.config/hypr/input.conf
|
||||
source = ~/.config/hypr/bindings.conf
|
||||
source = ~/.config/hypr/envs.conf
|
||||
source = ~/.config/hypr/looknfeel.conf
|
||||
source = ~/.config/hypr/autostart.conf
|
||||
@@ -1,39 +0,0 @@
|
||||
source = ~/.config/omarchy/current/theme/hyprlock.conf
|
||||
|
||||
background {
|
||||
monitor =
|
||||
color = $color
|
||||
path = ~/.config/omarchy/current/background
|
||||
blur_passes = 3
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
input-field {
|
||||
monitor =
|
||||
size = 650, 100
|
||||
position = 0, 0
|
||||
halign = center
|
||||
valign = center
|
||||
|
||||
inner_color = $inner_color
|
||||
outer_color = $outer_color
|
||||
outline_thickness = 4
|
||||
|
||||
font_family = CaskaydiaMono Nerd Font Propo
|
||||
font_color = $font_color
|
||||
|
||||
placeholder_text = Enter Password
|
||||
check_color = $check_color
|
||||
fail_text = <i>$FAIL ($ATTEMPTS)</i>
|
||||
|
||||
rounding = 0
|
||||
shadow_passes = 0
|
||||
fade_on_empty = false
|
||||
}
|
||||
|
||||
auth {
|
||||
fingerprint:enabled = true
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
# Makes hyprsunset do nothing to the screen by default
|
||||
# Without this, the default applies some tint to the monitor
|
||||
profile {
|
||||
time = 07:00
|
||||
identity = true
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
# Control your input devices
|
||||
# See https://wiki.hypr.land/Configuring/Variables/#input
|
||||
input {
|
||||
# Use multiple keyboard layouts and switch between them with Left Alt + Right Alt
|
||||
# kb_layout = us,dk,eu
|
||||
kb_layout = us
|
||||
kb_options = compose:caps # ,grp:alts_toggle
|
||||
|
||||
# Change speed of keyboard repeat
|
||||
repeat_rate = 40
|
||||
repeat_delay = 600
|
||||
|
||||
# Start with numlock on by default
|
||||
numlock_by_default = true
|
||||
|
||||
# Increase sensitity for mouse/trackpack (default: 0)
|
||||
# sensitivity = 0.35
|
||||
|
||||
touchpad {
|
||||
# Use natural (inverse) scrolling
|
||||
# natural_scroll = true
|
||||
|
||||
# Use two-finger clicks for right-click instead of lower-right corner
|
||||
# clickfinger_behavior = true
|
||||
|
||||
# Control the speed of your scrolling
|
||||
scroll_factor = 0.4
|
||||
}
|
||||
}
|
||||
|
||||
# Scroll nicely in the terminal
|
||||
windowrule = scrolltouchpad 1.5, class:(Alacritty|kitty)
|
||||
windowrule = scrolltouchpad 0.2, class:com.mitchellh.ghostty
|
||||
|
||||
# Enable touchpad gestures for changing workspaces
|
||||
# See https://wiki.hyprland.org/Configuring/Gestures/
|
||||
# gesture = 3, horizontal, workspace
|
||||
@@ -1,23 +0,0 @@
|
||||
# Change the default Omarchy look'n'feel
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#general
|
||||
general {
|
||||
# No gaps between windows
|
||||
# gaps_in = 0
|
||||
# gaps_out = 0
|
||||
|
||||
# Use master layout instead of dwindle
|
||||
# layout = master
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#decoration
|
||||
decoration {
|
||||
# Use round window corners
|
||||
# rounding = 8
|
||||
}
|
||||
|
||||
# https://wiki.hypr.land/Configuring/Dwindle-Layout/
|
||||
dwindle {
|
||||
# Avoid overly wide single-window layouts on wide screens
|
||||
# single_window_aspect_ratio = 1 1
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
# List current monitors and resolutions possible: hyprctl monitors
|
||||
# Format: monitor = [port], resolution, position, scale
|
||||
# You must relaunch Hyprland after changing any envs (use Super+Esc, then Relaunch)
|
||||
|
||||
# Optimized for retina-class 2x displays, like 13" 2.8K, 27" 5K, 32" 6K.
|
||||
env = GDK_SCALE,1
|
||||
monitor=,preferred,auto,auto
|
||||
|
||||
# Good compromise for 27" or 32" 4K monitors (but fractional!)
|
||||
# env = GDK_SCALE,1.75
|
||||
# monitor=,preferred,auto,1.666667
|
||||
|
||||
# Straight 1x setup for low-resolution displays like 1080p or 1440p
|
||||
# env = GDK_SCALE,1
|
||||
# monitor=,preferred,auto,1
|
||||
|
||||
# Example for Framework 13 w/ 6K XDR Apple display
|
||||
# monitor = DP-5, 6016x3384@60, auto, 2
|
||||
# monitor = eDP-1, 2880x1920@120, auto, 2
|
||||
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/1480/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/1480/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/1755/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/1755/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2366/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2366/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2835/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2835/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2897/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/2897/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3224/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3224/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3532/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3532/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3599/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/3599/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4023/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4023/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4032/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4032/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4217/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4217/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4353/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4353/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4433/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4433/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4512/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4512/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4525/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4525/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4819/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/4819/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5022/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5022/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5084/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5084/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5439/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5439/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5500/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5500/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5653/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5653/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5831/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/5831/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/6183/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/6183/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/6392/.lock
vendored
Normal file
0
zsh/.local/share/nvim/mason/packages/lua-language-server/libexec/log/cache/6392/.lock
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -46,3 +46,7 @@ inde
|
||||
bu
|
||||
ma
|
||||
mai
|
||||
in
|
||||
bu
|
||||
std
|
||||
in
|
||||
|
||||
Reference in New Issue
Block a user