From 304b807ac26bad58891599aa76179b1f227f810e Mon Sep 17 00:00:00 2001 From: Dukantic Date: Wed, 12 Nov 2025 17:19:04 +0100 Subject: [PATCH] init --- .gitattributes | 7 + .gitignore | 6 + LICENSE | 674 ++++++++++++++++++ README.md | 5 + config/fastfetch/config.jsonc | 116 +++ config/fish/config.fish | 5 + .../fish/functions/_tide_1_line_prompt.fish | 19 + .../fish/functions/_tide_2_line_prompt.fish | 31 + .../fish/functions/_tide_cache_variables.fish | 17 + config/fish/functions/_tide_detect_os.fish | 77 ++ .../fish/functions/_tide_find_and_remove.fish | 3 + .../fish/functions/_tide_fish_colorize.fish | 7 + config/fish/functions/_tide_item_aws.fish | 11 + .../fish/functions/_tide_item_character.fish | 17 + .../functions/_tide_item_cmd_duration.fish | 12 + config/fish/functions/_tide_item_context.fish | 14 + config/fish/functions/_tide_item_crystal.fish | 6 + config/fish/functions/_tide_item_direnv.fish | 7 + .../fish/functions/_tide_item_distrobox.fish | 4 + config/fish/functions/_tide_item_docker.fish | 5 + config/fish/functions/_tide_item_elixir.fish | 4 + config/fish/functions/_tide_item_gcloud.fish | 8 + config/fish/functions/_tide_item_git.fish | 72 ++ config/fish/functions/_tide_item_go.fish | 6 + config/fish/functions/_tide_item_java.fish | 6 + config/fish/functions/_tide_item_jobs.fish | 7 + config/fish/functions/_tide_item_kubectl.fish | 4 + .../fish/functions/_tide_item_nix_shell.fish | 3 + config/fish/functions/_tide_item_node.fish | 6 + config/fish/functions/_tide_item_os.fish | 3 + config/fish/functions/_tide_item_php.fish | 6 + .../functions/_tide_item_private_mode.fish | 3 + config/fish/functions/_tide_item_pulumi.fish | 19 + config/fish/functions/_tide_item_python.fish | 27 + config/fish/functions/_tide_item_ruby.fish | 6 + config/fish/functions/_tide_item_rustc.fish | 6 + config/fish/functions/_tide_item_shlvl.fish | 4 + config/fish/functions/_tide_item_status.fish | 15 + .../fish/functions/_tide_item_terraform.fish | 5 + config/fish/functions/_tide_item_time.fish | 3 + config/fish/functions/_tide_item_toolbox.fish | 4 + config/fish/functions/_tide_item_vi_mode.fish | 16 + config/fish/functions/_tide_item_zig.fish | 6 + config/fish/functions/_tide_parent_dirs.fish | 7 + config/fish/functions/_tide_print_item.fish | 22 + config/fish/functions/_tide_pwd.fish | 42 ++ .../_tide_remove_unusable_items.fish | 25 + .../fish/functions/_tide_sub_bug-report.fish | 73 ++ .../fish/functions/_tide_sub_configure.fish | 156 ++++ config/fish/functions/_tide_sub_reload.fish | 3 + config/fish/functions/fish_mode_prompt.fish | 1 + .../functions/fish_prompt.1756710077.copy | 171 +++++ config/fish/functions/fish_prompt.fish | 171 +++++ config/fish/functions/fisher.fish | 240 +++++++ config/fish/functions/tide.fish | 28 + .../tide/configure/choices/all/finish.fish | 46 ++ .../tide/configure/choices/all/icons.fish | 33 + .../configure/choices/all/prompt_colors.fish | 26 + .../choices/all/prompt_connection.fish | 31 + .../prompt_connection_andor_frame_color.fish | 40 ++ .../configure/choices/all/prompt_spacing.fish | 22 + .../tide/configure/choices/all/show_time.fish | 33 + .../tide/configure/choices/all/style.fish | 36 + .../tide/configure/choices/all/transient.fish | 22 + .../choices/classic/classic_prompt_color.fish | 38 + .../classic/classic_prompt_separators.fish | 40 ++ .../choices/lean/lean_prompt_height.fish | 26 + .../powerline/powerline_prompt_heads.fish | 32 + .../powerline/powerline_prompt_style.fish | 51 ++ .../powerline/powerline_prompt_tails.fish | 40 ++ .../powerline_right_prompt_frame.fish | 20 + .../rainbow/rainbow_prompt_separators.fish | 40 ++ .../tide/configure/configs/classic.fish | 116 +++ .../configure/configs/classic_16color.fish | 89 +++ .../tide/configure/configs/lean.fish | 116 +++ .../tide/configure/configs/lean_16color.fish | 89 +++ .../tide/configure/configs/rainbow.fish | 116 +++ .../configure/configs/rainbow_16color.fish | 93 +++ .../functions/_fake_tide_cache_variables.fish | 41 ++ .../functions/_fake_tide_item_character.fish | 8 + .../_fake_tide_item_cmd_duration.fish | 3 + .../functions/_fake_tide_item_git.fish | 3 + .../functions/_fake_tide_item_newline.fish | 5 + .../functions/_fake_tide_item_os.fish | 3 + .../functions/_fake_tide_item_time.fish | 3 + .../functions/_fake_tide_print_item.fish | 22 + .../functions/_fake_tide_prompt.fish | 42 ++ .../configure/functions/_fake_tide_pwd.fish | 11 + .../fish/functions/tide/configure/icons.fish | 40 ++ config/kitty/kitty.conf | 123 ++++ config/nvim/init.lua | 5 + config/nvim/lazy-lock.json | 29 + config/nvim/lua/config/cmp.lua | 25 + config/nvim/lua/config/keymaps.lua | 9 + config/nvim/lua/config/lazy.lua | 267 +++++++ config/nvim/lua/config/lsp.lua | 52 ++ config/nvim/lua/config/options.lua | 38 + home/.bash_profile | 6 + home/.bashrc | 23 + home/.clang-format | 3 + home/Utils/C/Makefile | 27 + install.sh | 7 + kde_conf/shortcut_export.kksrc | 449 ++++++++++++ linkAll.sh | 29 + packagesNeeded.sh | 72 ++ 105 files changed, 4761 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 config/fastfetch/config.jsonc create mode 100644 config/fish/config.fish create mode 100644 config/fish/functions/_tide_1_line_prompt.fish create mode 100644 config/fish/functions/_tide_2_line_prompt.fish create mode 100644 config/fish/functions/_tide_cache_variables.fish create mode 100644 config/fish/functions/_tide_detect_os.fish create mode 100644 config/fish/functions/_tide_find_and_remove.fish create mode 100644 config/fish/functions/_tide_fish_colorize.fish create mode 100644 config/fish/functions/_tide_item_aws.fish create mode 100644 config/fish/functions/_tide_item_character.fish create mode 100644 config/fish/functions/_tide_item_cmd_duration.fish create mode 100644 config/fish/functions/_tide_item_context.fish create mode 100644 config/fish/functions/_tide_item_crystal.fish create mode 100644 config/fish/functions/_tide_item_direnv.fish create mode 100644 config/fish/functions/_tide_item_distrobox.fish create mode 100644 config/fish/functions/_tide_item_docker.fish create mode 100644 config/fish/functions/_tide_item_elixir.fish create mode 100644 config/fish/functions/_tide_item_gcloud.fish create mode 100644 config/fish/functions/_tide_item_git.fish create mode 100644 config/fish/functions/_tide_item_go.fish create mode 100644 config/fish/functions/_tide_item_java.fish create mode 100644 config/fish/functions/_tide_item_jobs.fish create mode 100644 config/fish/functions/_tide_item_kubectl.fish create mode 100644 config/fish/functions/_tide_item_nix_shell.fish create mode 100644 config/fish/functions/_tide_item_node.fish create mode 100644 config/fish/functions/_tide_item_os.fish create mode 100644 config/fish/functions/_tide_item_php.fish create mode 100644 config/fish/functions/_tide_item_private_mode.fish create mode 100644 config/fish/functions/_tide_item_pulumi.fish create mode 100644 config/fish/functions/_tide_item_python.fish create mode 100644 config/fish/functions/_tide_item_ruby.fish create mode 100644 config/fish/functions/_tide_item_rustc.fish create mode 100644 config/fish/functions/_tide_item_shlvl.fish create mode 100644 config/fish/functions/_tide_item_status.fish create mode 100644 config/fish/functions/_tide_item_terraform.fish create mode 100644 config/fish/functions/_tide_item_time.fish create mode 100644 config/fish/functions/_tide_item_toolbox.fish create mode 100644 config/fish/functions/_tide_item_vi_mode.fish create mode 100644 config/fish/functions/_tide_item_zig.fish create mode 100644 config/fish/functions/_tide_parent_dirs.fish create mode 100644 config/fish/functions/_tide_print_item.fish create mode 100644 config/fish/functions/_tide_pwd.fish create mode 100644 config/fish/functions/_tide_remove_unusable_items.fish create mode 100644 config/fish/functions/_tide_sub_bug-report.fish create mode 100644 config/fish/functions/_tide_sub_configure.fish create mode 100644 config/fish/functions/_tide_sub_reload.fish create mode 100644 config/fish/functions/fish_mode_prompt.fish create mode 100644 config/fish/functions/fish_prompt.1756710077.copy create mode 100644 config/fish/functions/fish_prompt.fish create mode 100644 config/fish/functions/fisher.fish create mode 100644 config/fish/functions/tide.fish create mode 100644 config/fish/functions/tide/configure/choices/all/finish.fish create mode 100644 config/fish/functions/tide/configure/choices/all/icons.fish create mode 100644 config/fish/functions/tide/configure/choices/all/prompt_colors.fish create mode 100644 config/fish/functions/tide/configure/choices/all/prompt_connection.fish create mode 100644 config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish create mode 100644 config/fish/functions/tide/configure/choices/all/prompt_spacing.fish create mode 100644 config/fish/functions/tide/configure/choices/all/show_time.fish create mode 100644 config/fish/functions/tide/configure/choices/all/style.fish create mode 100644 config/fish/functions/tide/configure/choices/all/transient.fish create mode 100644 config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish create mode 100644 config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish create mode 100644 config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish create mode 100644 config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish create mode 100644 config/fish/functions/tide/configure/choices/powerline/powerline_prompt_style.fish create mode 100644 config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish create mode 100644 config/fish/functions/tide/configure/choices/powerline/powerline_right_prompt_frame.fish create mode 100644 config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish create mode 100644 config/fish/functions/tide/configure/configs/classic.fish create mode 100644 config/fish/functions/tide/configure/configs/classic_16color.fish create mode 100644 config/fish/functions/tide/configure/configs/lean.fish create mode 100644 config/fish/functions/tide/configure/configs/lean_16color.fish create mode 100644 config/fish/functions/tide/configure/configs/rainbow.fish create mode 100644 config/fish/functions/tide/configure/configs/rainbow_16color.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_cache_variables.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_character.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_cmd_duration.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_git.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_newline.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_os.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_item_time.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_print_item.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_prompt.fish create mode 100644 config/fish/functions/tide/configure/functions/_fake_tide_pwd.fish create mode 100644 config/fish/functions/tide/configure/icons.fish create mode 100644 config/kitty/kitty.conf create mode 100644 config/nvim/init.lua create mode 100644 config/nvim/lazy-lock.json create mode 100644 config/nvim/lua/config/cmp.lua create mode 100644 config/nvim/lua/config/keymaps.lua create mode 100644 config/nvim/lua/config/lazy.lua create mode 100644 config/nvim/lua/config/lsp.lua create mode 100644 config/nvim/lua/config/options.lua create mode 100644 home/.bash_profile create mode 100644 home/.bashrc create mode 100644 home/.clang-format create mode 100644 home/Utils/C/Makefile create mode 100644 install.sh create mode 100644 kde_conf/shortcut_export.kksrc create mode 100644 linkAll.sh create mode 100644 packagesNeeded.sh diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5494913 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +*.tar.gz filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.png~ filter=lfs diff=lfs merge=lfs -text +wallpapers filter=lfs diff=lfs merge=lfs -text +wallpapers/* filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..341746a --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +#repos +dwm-duk +blocks-duk +statusbar-duk +config/fish/fish_variables +config/fish/fish_variables diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d865b51 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 2025 dukantic + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) 2025 dukantic + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..2e57d4e --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# dukantic-setup + +This repository centralizes all my personal configurations for **Arch Linux**, including Fish shell, Neovim, Kitty, KDE, and various utilities. It also contains scripts to simplify setup and config synchronization. + +--- diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc new file mode 100644 index 0000000..8f92739 --- /dev/null +++ b/config/fastfetch/config.jsonc @@ -0,0 +1,116 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "padding": { + "top": 2, + "left": 1, + "right": 2 + } + }, + "display": { + "separator": " " + }, + "modules": [ + // Title + { + "type": "title", + "format": "{#1}╭───────────── {#}{user-name-colored}" + }, + // System Information + { + "type": "custom", + "format": "{#1}│ {#}System Information" + }, + { + "type": "os", + "key": "{#separator}│ {#keys}󰍹 OS" + }, + { + "type": "kernel", + "key": "{#separator}│ {#keys}󰒋 Kernel" + }, + { + "type": "uptime", + "key": "{#separator}│ {#keys}󰅐 Uptime" + }, + { + "type": "packages", + "key": "{#separator}│ {#keys}󰏖 Packages", + "format": "{all}" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Desktop Environment + { + "type": "custom", + "format": "{#1}│ {#}Desktop Environment" + }, + { + "type": "de", + "key": "{#separator}│ {#keys}󰧨 DE" + }, + { + "type": "wm", + "key": "{#separator}│ {#keys}󱂬 WM" + }, + { + "type": "wmtheme", + "key": "{#separator}│ {#keys}󰉼 Theme" + }, + { + "type": "display", + "key": "{#separator}│ {#keys}󰹑 Resolution" + }, + { + "type": "shell", + "key": "{#separator}│ {#keys}󰞷 Shell" + }, + { + "type": "terminalfont", + "key": "{#separator}│ {#keys}󰛖 Font" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Hardware Information + { + "type": "custom", + "format": "{#1}│ {#}Hardware Information" + }, + { + "type": "cpu", + "key": "{#separator}│ {#keys}󰻠 CPU" + }, + { + "type": "gpu", + "key": "{#separator}│ {#keys}󰢮 GPU" + }, + { + "type": "memory", + "key": "{#separator}│ {#keys}󰍛 Memory" + }, + { + "type": "disk", + "key": "{#separator}│ {#keys}󰋊 Disk (/)", + "folders": "/" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Colors + { + "type": "colors", + "key": "{#separator}│", + "symbol": "circle" + }, + // Footer + { + "type": "custom", + "format": "{#1}╰───────────────────────────────╯" + } + ] +} diff --git a/config/fish/config.fish b/config/fish/config.fish new file mode 100644 index 0000000..589f768 --- /dev/null +++ b/config/fish/config.fish @@ -0,0 +1,5 @@ +if status is-interactive + # Commands to run in interactive sessions can go here +end +function fish_greeting +end diff --git a/config/fish/functions/_tide_1_line_prompt.fish b/config/fish/functions/_tide_1_line_prompt.fish new file mode 100644 index 0000000..5772223 --- /dev/null +++ b/config/fish/functions/_tide_1_line_prompt.fish @@ -0,0 +1,19 @@ +function _tide_1_line_prompt + set -g add_prefix + _tide_side=left for item in $_tide_left_items + _tide_item_$item + end + set_color $prev_bg_color -b normal + echo $tide_left_prompt_suffix + + set -g add_prefix + _tide_side=right for item in $_tide_right_items + _tide_item_$item + end + set_color $prev_bg_color -b normal + echo $tide_right_prompt_suffix +end + +function _tide_item_pwd + _tide_print_item pwd @PWD@ +end diff --git a/config/fish/functions/_tide_2_line_prompt.fish b/config/fish/functions/_tide_2_line_prompt.fish new file mode 100644 index 0000000..e9017af --- /dev/null +++ b/config/fish/functions/_tide_2_line_prompt.fish @@ -0,0 +1,31 @@ +function _tide_2_line_prompt + set -g add_prefix + _tide_side=left for item in $_tide_left_items + _tide_item_$item + end + if not set -e add_prefix + set_color $prev_bg_color -b normal + echo $tide_left_prompt_suffix + end + + echo + + set -g add_prefix + _tide_side=right for item in $_tide_right_items + _tide_item_$item + end + if not set -e add_prefix + set_color $prev_bg_color -b normal + echo $tide_right_prompt_suffix + end +end + +function _tide_item_pwd + _tide_print_item pwd @PWD@ +end + +function _tide_item_newline + set_color $prev_bg_color -b normal + v=tide_"$_tide_side"_prompt_suffix echo $$v + set -g add_prefix +end diff --git a/config/fish/functions/_tide_cache_variables.fish b/config/fish/functions/_tide_cache_variables.fish new file mode 100644 index 0000000..31e3850 --- /dev/null +++ b/config/fish/functions/_tide_cache_variables.fish @@ -0,0 +1,17 @@ +function _tide_cache_variables + # Same-color-separator color + set_color $tide_prompt_color_separator_same_color | read -gx _tide_color_separator_same_color + + # git + contains git $_tide_left_items $_tide_right_items && set_color $tide_git_color_branch | read -gx _tide_location_color + + # private_mode + if contains private_mode $_tide_left_items $_tide_right_items && test -n "$fish_private_mode" + set -gx _tide_private_mode + else + set -e _tide_private_mode + end + + # item padding + test "$tide_prompt_pad_items" = true && set -gx _tide_pad ' ' || set -e _tide_pad +end diff --git a/config/fish/functions/_tide_detect_os.fish b/config/fish/functions/_tide_detect_os.fish new file mode 100644 index 0000000..cf38388 --- /dev/null +++ b/config/fish/functions/_tide_detect_os.fish @@ -0,0 +1,77 @@ +# Outputs icon, color, bg_color +function _tide_detect_os + set -lx defaultColor 080808 CED7CF + switch (uname | string lower) + case darwin + printf %s\n  D6D6D6 333333 # from apple.com header + case freebsd openbsd dragonfly + printf %s\n  FFFFFF AB2B28 # https://freebsdfoundation.org/about-us/about-the-foundation/project/ + case 'cygwin*' 'mingw*_nt*' 'msys_nt*' + printf %s\n  FFFFFF 00CCFF # https://answers.microsoft.com/en-us/windows/forum/all/what-is-the-official-windows-8-blue-rgb-or-hex/fd57144b-f69b-42d8-8c21-6ca911646e44 + case linux + if test (uname -o) = Android + echo ﲎ # This character is evil and messes up code display, so it's put on its own line + # https://developer.android.com/distribute/marketing-tools/brand-guidelines + printf %s\n 3DDC84 3C3F41 # fg is from above link, bg is from Android Studio default dark theme + else + _tide_detect_os_linux_cases /etc/os-release ID || + _tide_detect_os_linux_cases /etc/os-release ID_LIKE || + _tide_detect_os_linux_cases /etc/lsb-release DISTRIB_ID || + printf %s\n  $defaultColor + end + case '*' + echo -ns '?' + end +end + +function _tide_detect_os_linux_cases -a file key + test -e $file || return + set -l split_file (string split '=' <$file) + set -l key_index (contains --index $key $split_file) || return + set -l value (string trim --chars='"' $split_file[(math $key_index + 1)]) + + # Anything which would have pure white background has been changed to D4D4D4 + # It was just too bright otherwise + switch (string lower $value) + case alpine + printf %s\n  FFFFFF 0D597F # from alpine logo + case arch + printf %s\n  1793D1 4D4D4D # from arch wiki header + case centos + printf %s\n  000000 D4D4D4 # https://wiki.centos.org/ArtWork/Brand/Logo, monochromatic + case debian + printf %s\n  C70036 D4D4D4 # from debian logo https://www.debian.org/logos/openlogo-nd-100.png + case devuan + printf %s\n  $defaultColor # logo is monochromatic + case elementary + printf %s\n  000000 D4D4D4 # https://elementary.io/brand, encouraged to be monochromatic + case fedora + printf %s\n  FFFFFF 294172 # from logo https://fedoraproject.org/w/uploads/2/2d/Logo_fedoralogo.png + case gentoo + printf %s\n  FFFFFF 54487A # https://wiki.gentoo.org/wiki/Project:Artwork/Colors + case mageia + printf %s\n  FFFFFF 262F45 # https://wiki.mageia.org/en/Artwork_guidelines + case manjaro + printf %s\n  FFFFFF 35BF5C # from https://gitlab.manjaro.org/artwork/branding/logo/-/blob/master/logo.svg + case mint linuxmint + printf %s\n  FFFFFF 69B53F # extracted from https://linuxmint.com/web/img/favicon.ico + case nixos + printf %s\n  FFFFFF 5277C3 # https://github.com/NixOS/nixos-artwork/tree/master/logo + case opensuse-leap opensuse-tumbleweed opensuse-microos + printf %s\n  73BA25 173f4f # https://en.opensuse.org/openSUSE:Artwork_brand + case raspbian + printf %s\n  FFFFFF A22846 # https://static.raspberrypi.org/files/Raspberry_Pi_Visual_Guidelines_2020.pdf + case rhel + printf %s\n  EE0000 000000 # https://www.redhat.com/en/about/brand/standards/color + case sabayon + printf %s\n  $defaultColor # Can't find colors, and they are rebranding anyway + case slackware + printf %s\n  $defaultColor # Doesn't really have a logo, and the colors are too close to PWD blue anyway + case ubuntu + printf %s\n  E95420 D4D4D4 # https://design.ubuntu.com/brand/ + case void + printf %s\n  FFFFFF 478061 # from https://alpha.de.repo.voidlinux.org/logos/void.svg + case '*' + return 1 + end +end diff --git a/config/fish/functions/_tide_find_and_remove.fish b/config/fish/functions/_tide_find_and_remove.fish new file mode 100644 index 0000000..29f2180 --- /dev/null +++ b/config/fish/functions/_tide_find_and_remove.fish @@ -0,0 +1,3 @@ +function _tide_find_and_remove -a name list --no-scope-shadowing + contains --index $name $$list | read -l index && set -e "$list"[$index] +end diff --git a/config/fish/functions/_tide_fish_colorize.fish b/config/fish/functions/_tide_fish_colorize.fish new file mode 100644 index 0000000..f79b188 --- /dev/null +++ b/config/fish/functions/_tide_fish_colorize.fish @@ -0,0 +1,7 @@ +function _tide_fish_colorize + if command -q fish_indent + echo -ns "$argv" | fish_indent --ansi + else + echo -ns "$argv" + end +end diff --git a/config/fish/functions/_tide_item_aws.fish b/config/fish/functions/_tide_item_aws.fish new file mode 100644 index 0000000..7cb6338 --- /dev/null +++ b/config/fish/functions/_tide_item_aws.fish @@ -0,0 +1,11 @@ +function _tide_item_aws + # AWS_PROFILE overrides AWS_DEFAULT_PROFILE, AWS_REGION overrides AWS_DEFAULT_REGION + set -q AWS_PROFILE && set -l AWS_DEFAULT_PROFILE $AWS_PROFILE + set -q AWS_REGION && set -l AWS_DEFAULT_REGION $AWS_REGION + + if test -n "$AWS_DEFAULT_PROFILE" && test -n "$AWS_DEFAULT_REGION" + _tide_print_item aws $tide_aws_icon' ' "$AWS_DEFAULT_PROFILE/$AWS_DEFAULT_REGION" + else if test -n "$AWS_DEFAULT_PROFILE$AWS_DEFAULT_REGION" + _tide_print_item aws $tide_aws_icon' ' "$AWS_DEFAULT_PROFILE$AWS_DEFAULT_REGION" + end +end diff --git a/config/fish/functions/_tide_item_character.fish b/config/fish/functions/_tide_item_character.fish new file mode 100644 index 0000000..10bb324 --- /dev/null +++ b/config/fish/functions/_tide_item_character.fish @@ -0,0 +1,17 @@ +function _tide_item_character + test $_tide_status = 0 && set_color $tide_character_color || set_color $tide_character_color_failure + + set -q add_prefix || echo -ns ' ' + + test "$fish_key_bindings" = fish_default_key_bindings && echo -ns $tide_character_icon || + switch $fish_bind_mode + case insert + echo -ns $tide_character_icon + case default + echo -ns $tide_character_vi_icon_default + case replace replace_one + echo -ns $tide_character_vi_icon_replace + case visual + echo -ns $tide_character_vi_icon_visual + end +end diff --git a/config/fish/functions/_tide_item_cmd_duration.fish b/config/fish/functions/_tide_item_cmd_duration.fish new file mode 100644 index 0000000..bc48bac --- /dev/null +++ b/config/fish/functions/_tide_item_cmd_duration.fish @@ -0,0 +1,12 @@ +function _tide_item_cmd_duration + test $CMD_DURATION -gt $tide_cmd_duration_threshold && t=( + math -s0 "$CMD_DURATION/3600000" # Hours + math -s0 "$CMD_DURATION/60000"%60 # Minutes + math -s$tide_cmd_duration_decimals "$CMD_DURATION/1000"%60) if test $t[1] != 0 + _tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[1]h $t[2]m $t[3]s" + else if test $t[2] != 0 + _tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[2]m $t[3]s" + else + _tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[3]s" + end +end diff --git a/config/fish/functions/_tide_item_context.fish b/config/fish/functions/_tide_item_context.fish new file mode 100644 index 0000000..cbdf420 --- /dev/null +++ b/config/fish/functions/_tide_item_context.fish @@ -0,0 +1,14 @@ +function _tide_item_context + if set -q SSH_TTY + set -fx tide_context_color $tide_context_color_ssh + else if test "$EUID" = 0 + set -fx tide_context_color $tide_context_color_root + else if test "$tide_context_always_display" = true + set -fx tide_context_color $tide_context_color_default + else + return + end + + string match -qr "^(?(\.?[^\.]*){0,$tide_context_hostname_parts})" @$hostname + _tide_print_item context $USER$h +end diff --git a/config/fish/functions/_tide_item_crystal.fish b/config/fish/functions/_tide_item_crystal.fish new file mode 100644 index 0000000..620dde4 --- /dev/null +++ b/config/fish/functions/_tide_item_crystal.fish @@ -0,0 +1,6 @@ +function _tide_item_crystal + if path is $_tide_parent_dirs/shard.yml + crystal --version | string match -qr "(?[\d.]+)" + _tide_print_item crystal $tide_crystal_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_direnv.fish b/config/fish/functions/_tide_item_direnv.fish new file mode 100644 index 0000000..f3c892b --- /dev/null +++ b/config/fish/functions/_tide_item_direnv.fish @@ -0,0 +1,7 @@ +function _tide_item_direnv + set -q DIRENV_DIR || return + direnv status | string match -q 'Found RC allowed false' && + set -lx tide_direnv_color $tide_direnv_color_denied && + set -lx tide_direnv_bg_color $tide_direnv_bg_color_denied + _tide_print_item direnv $tide_direnv_icon +end diff --git a/config/fish/functions/_tide_item_distrobox.fish b/config/fish/functions/_tide_item_distrobox.fish new file mode 100644 index 0000000..5e06a8b --- /dev/null +++ b/config/fish/functions/_tide_item_distrobox.fish @@ -0,0 +1,4 @@ +function _tide_item_distrobox + test -e /etc/profile.d/distrobox_profile.sh && test -e /run/.containerenv && + _tide_print_item distrobox $tide_distrobox_icon' ' (string match -rg 'name="(.*)"' .*)' <$CLOUDSDK_CONFIG/configurations/config_$config && + _tide_print_item gcloud $tide_gcloud_icon' ' $project +end diff --git a/config/fish/functions/_tide_item_git.fish b/config/fish/functions/_tide_item_git.fish new file mode 100644 index 0000000..3154acc --- /dev/null +++ b/config/fish/functions/_tide_item_git.fish @@ -0,0 +1,72 @@ +function _tide_item_git + if git branch --show-current 2>/dev/null | string shorten -"$tide_git_truncation_strategy"m$tide_git_truncation_length | read -l location + git rev-parse --git-dir --is-inside-git-dir | read -fL gdir in_gdir + set location $_tide_location_color$location + else if test $pipestatus[1] != 0 + return + else if git tag --points-at HEAD | string shorten -"$tide_git_truncation_strategy"m$tide_git_truncation_length | read location + git rev-parse --git-dir --is-inside-git-dir | read -fL gdir in_gdir + set location '#'$_tide_location_color$location + else + git rev-parse --git-dir --is-inside-git-dir --short HEAD | read -fL gdir in_gdir location + set location @$_tide_location_color$location + end + + # Operation + if test -d $gdir/rebase-merge + # Turn ANY into ALL, via double negation + if not path is -v $gdir/rebase-merge/{msgnum,end} + read -f step <$gdir/rebase-merge/msgnum + read -f total_steps <$gdir/rebase-merge/end + end + test -f $gdir/rebase-merge/interactive && set -f operation rebase-i || set -f operation rebase-m + else if test -d $gdir/rebase-apply + if not path is -v $gdir/rebase-apply/{next,last} + read -f step <$gdir/rebase-apply/next + read -f total_steps <$gdir/rebase-apply/last + end + if test -f $gdir/rebase-apply/rebasing + set -f operation rebase + else if test -f $gdir/rebase-apply/applying + set -f operation am + else + set -f operation am/rebase + end + else if test -f $gdir/MERGE_HEAD + set -f operation merge + else if test -f $gdir/CHERRY_PICK_HEAD + set -f operation cherry-pick + else if test -f $gdir/REVERT_HEAD + set -f operation revert + else if test -f $gdir/BISECT_LOG + set -f operation bisect + end + + # Git status/stash + Upstream behind/ahead + test $in_gdir = true && set -l _set_dir_opt -C $gdir/.. + # Suppress errors in case we are in a bare repo or there is no upstream + set -l stat (git $_set_dir_opt --no-optional-locks status --porcelain 2>/dev/null) + string match -qr '(0|(?.*))\n(0|(?.*))\n(0|(?.*)) +(0|(?.*))\n(0|(?.*))(\n(0|(?.*))\t(0|(?.*)))?' \ + "$(git $_set_dir_opt stash list 2>/dev/null | count + string match -r ^UU $stat | count + string match -r ^[ADMR]. $stat | count + string match -r ^.[ADMR] $stat | count + string match -r '^\?\?' $stat | count + git rev-list --count --left-right @{upstream}...HEAD 2>/dev/null)" + + if test -n "$operation$conflicted" + set -g tide_git_bg_color $tide_git_bg_color_urgent + else if test -n "$staged$dirty$untracked" + set -g tide_git_bg_color $tide_git_bg_color_unstable + end + + _tide_print_item git $_tide_location_color$tide_git_icon' ' (set_color white; echo -ns $location + set_color $tide_git_color_operation; echo -ns ' '$operation ' '$step/$total_steps + set_color $tide_git_color_upstream; echo -ns ' ⇣'$behind ' ⇡'$ahead + set_color $tide_git_color_stash; echo -ns ' *'$stash + set_color $tide_git_color_conflicted; echo -ns ' ~'$conflicted + set_color $tide_git_color_staged; echo -ns ' +'$staged + set_color $tide_git_color_dirty; echo -ns ' !'$dirty + set_color $tide_git_color_untracked; echo -ns ' ?'$untracked) +end diff --git a/config/fish/functions/_tide_item_go.fish b/config/fish/functions/_tide_item_go.fish new file mode 100644 index 0000000..b9aacae --- /dev/null +++ b/config/fish/functions/_tide_item_go.fish @@ -0,0 +1,6 @@ +function _tide_item_go + if path is $_tide_parent_dirs/go.mod + go version | string match -qr "(?[\d.]+)" + _tide_print_item go $tide_go_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_java.fish b/config/fish/functions/_tide_item_java.fish new file mode 100644 index 0000000..804ec05 --- /dev/null +++ b/config/fish/functions/_tide_item_java.fish @@ -0,0 +1,6 @@ +function _tide_item_java + if path is $_tide_parent_dirs/pom.xml + java -version &| string match -qr "(?[\d.]+)" + _tide_print_item java $tide_java_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_jobs.fish b/config/fish/functions/_tide_item_jobs.fish new file mode 100644 index 0000000..2a02118 --- /dev/null +++ b/config/fish/functions/_tide_item_jobs.fish @@ -0,0 +1,7 @@ +function _tide_item_jobs + set -q _tide_jobs && if test $_tide_jobs -ge $tide_jobs_number_threshold + _tide_print_item jobs $tide_jobs_icon' ' $_tide_jobs + else + _tide_print_item jobs $tide_jobs_icon + end +end diff --git a/config/fish/functions/_tide_item_kubectl.fish b/config/fish/functions/_tide_item_kubectl.fish new file mode 100644 index 0000000..ab044b3 --- /dev/null +++ b/config/fish/functions/_tide_item_kubectl.fish @@ -0,0 +1,4 @@ +function _tide_item_kubectl + kubectl config view --minify --output 'jsonpath={.current-context}/{..namespace}' 2>/dev/null | read -l context && + _tide_print_item kubectl $tide_kubectl_icon' ' (string replace -r '/(|default)$' '' $context) +end diff --git a/config/fish/functions/_tide_item_nix_shell.fish b/config/fish/functions/_tide_item_nix_shell.fish new file mode 100644 index 0000000..647f606 --- /dev/null +++ b/config/fish/functions/_tide_item_nix_shell.fish @@ -0,0 +1,3 @@ +function _tide_item_nix_shell + set -q IN_NIX_SHELL && _tide_print_item nix_shell $tide_nix_shell_icon' ' $IN_NIX_SHELL +end diff --git a/config/fish/functions/_tide_item_node.fish b/config/fish/functions/_tide_item_node.fish new file mode 100644 index 0000000..fc57832 --- /dev/null +++ b/config/fish/functions/_tide_item_node.fish @@ -0,0 +1,6 @@ +function _tide_item_node + if path is $_tide_parent_dirs/package.json + node --version | string match -qr "v(?.*)" + _tide_print_item node $tide_node_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_os.fish b/config/fish/functions/_tide_item_os.fish new file mode 100644 index 0000000..8a6208c --- /dev/null +++ b/config/fish/functions/_tide_item_os.fish @@ -0,0 +1,3 @@ +function _tide_item_os + _tide_print_item os $tide_os_icon +end diff --git a/config/fish/functions/_tide_item_php.fish b/config/fish/functions/_tide_item_php.fish new file mode 100644 index 0000000..c8d28d9 --- /dev/null +++ b/config/fish/functions/_tide_item_php.fish @@ -0,0 +1,6 @@ +function _tide_item_php + if path is $_tide_parent_dirs/composer.json + php --version | string match -qr "(?[\d.]+)" + _tide_print_item php $tide_php_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_private_mode.fish b/config/fish/functions/_tide_item_private_mode.fish new file mode 100644 index 0000000..4eb4684 --- /dev/null +++ b/config/fish/functions/_tide_item_private_mode.fish @@ -0,0 +1,3 @@ +function _tide_item_private_mode + set -q _tide_private_mode && _tide_print_item private_mode $tide_private_mode_icon +end diff --git a/config/fish/functions/_tide_item_pulumi.fish b/config/fish/functions/_tide_item_pulumi.fish new file mode 100644 index 0000000..6302a7e --- /dev/null +++ b/config/fish/functions/_tide_item_pulumi.fish @@ -0,0 +1,19 @@ +function _tide_item_pulumi + if path filter $_tide_parent_dirs/Pulumi.yaml | read -l yaml_path + if command -q sha1sum + echo -n "$yaml_path" | sha1sum | string match -qr "(?.{40})" + else if command -q shasum + echo -n "$yaml_path" | shasum | string match -qr "(?.{40})" + else + return + end + + string match -qr 'name: *(?.*)' <$yaml_path + set -l workspace_file "$HOME/.pulumi/workspaces/$project_name-$path_hash-workspace.json" + + if test -e $workspace_file + string match -qr '"stack": *"(?.*)"' <$workspace_file + _tide_print_item pulumi $tide_pulumi_icon' ' $stack + end + end +end diff --git a/config/fish/functions/_tide_item_python.fish b/config/fish/functions/_tide_item_python.fish new file mode 100644 index 0000000..57f7075 --- /dev/null +++ b/config/fish/functions/_tide_item_python.fish @@ -0,0 +1,27 @@ +function _tide_item_python + if test -n "$VIRTUAL_ENV" + if command -q python3 + python3 --version | string match -qr "(?[\d.]+)" + else + python --version | string match -qr "(?[\d.]+)" + end + string match -qr "^.*/(?.*)/(?.*)" $VIRTUAL_ENV + # pipenv $VIRTUAL_ENV looks like /home/ilan/.local/share/virtualenvs/pipenv_project-EwRYuc3l + # Detect whether we are using pipenv by looking for 'virtualenvs'. If so, remove the hash at the end. + if test "$dir" = virtualenvs + string match -qr "(?.*)-.*" $base + _tide_print_item python $tide_python_icon' ' "$v ($base)" + else if contains -- "$base" virtualenv venv .venv env # avoid generic names + _tide_print_item python $tide_python_icon' ' "$v ($dir)" + else + _tide_print_item python $tide_python_icon' ' "$v ($base)" + end + else if path is .python-version Pipfile __init__.py pyproject.toml requirements.txt setup.py + if command -q python3 + python3 --version | string match -qr "(?[\d.]+)" + else + python --version | string match -qr "(?[\d.]+)" + end + _tide_print_item python $tide_python_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_ruby.fish b/config/fish/functions/_tide_item_ruby.fish new file mode 100644 index 0000000..bde84eb --- /dev/null +++ b/config/fish/functions/_tide_item_ruby.fish @@ -0,0 +1,6 @@ +function _tide_item_ruby + if path is $_tide_parent_dirs/{*.gemspec,Gemfile,Rakefile,.ruby-version} + ruby --version | string match -qr "(?[\d.]+)" + _tide_print_item ruby $tide_ruby_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_rustc.fish b/config/fish/functions/_tide_item_rustc.fish new file mode 100644 index 0000000..b46cd99 --- /dev/null +++ b/config/fish/functions/_tide_item_rustc.fish @@ -0,0 +1,6 @@ +function _tide_item_rustc + if path is $_tide_parent_dirs/Cargo.toml + rustc --version | string match -qr "(?[\d.]+)" + _tide_print_item rustc $tide_rustc_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_item_shlvl.fish b/config/fish/functions/_tide_item_shlvl.fish new file mode 100644 index 0000000..95dd5ff --- /dev/null +++ b/config/fish/functions/_tide_item_shlvl.fish @@ -0,0 +1,4 @@ +function _tide_item_shlvl + # Non-interactive shells do not increment SHLVL, so we don't need to subtract 1 + test $SHLVL -gt $tide_shlvl_threshold && _tide_print_item shlvl $tide_shlvl_icon' ' $SHLVL +end diff --git a/config/fish/functions/_tide_item_status.fish b/config/fish/functions/_tide_item_status.fish new file mode 100644 index 0000000..3a040fd --- /dev/null +++ b/config/fish/functions/_tide_item_status.fish @@ -0,0 +1,15 @@ +function _tide_item_status + if string match -qv 0 $_tide_pipestatus # If there is a failure anywhere in the pipestatus + if test "$_tide_pipestatus" = 1 # If simple failure + contains character $_tide_left_items || tide_status_bg_color=$tide_status_bg_color_failure \ + tide_status_color=$tide_status_color_failure _tide_print_item status $tide_status_icon_failure' ' 1 + else + fish_status_to_signal $_tide_pipestatus | string replace SIG '' | string join '|' | read -l out + test $_tide_status = 0 && _tide_print_item status $tide_status_icon' ' $out || + tide_status_bg_color=$tide_status_bg_color_failure tide_status_color=$tide_status_color_failure \ + _tide_print_item status $tide_status_icon_failure' ' $out + end + else if not contains character $_tide_left_items + _tide_print_item status $tide_status_icon + end +end diff --git a/config/fish/functions/_tide_item_terraform.fish b/config/fish/functions/_tide_item_terraform.fish new file mode 100644 index 0000000..c079ce3 --- /dev/null +++ b/config/fish/functions/_tide_item_terraform.fish @@ -0,0 +1,5 @@ +function _tide_item_terraform + path is $_tide_parent_dirs/.terraform && + terraform workspace show | string match -v default | read -l w && + _tide_print_item terraform $tide_terraform_icon' ' $w +end diff --git a/config/fish/functions/_tide_item_time.fish b/config/fish/functions/_tide_item_time.fish new file mode 100644 index 0000000..b8522bc --- /dev/null +++ b/config/fish/functions/_tide_item_time.fish @@ -0,0 +1,3 @@ +function _tide_item_time + _tide_print_item time (date +$tide_time_format) +end diff --git a/config/fish/functions/_tide_item_toolbox.fish b/config/fish/functions/_tide_item_toolbox.fish new file mode 100644 index 0000000..0b33f29 --- /dev/null +++ b/config/fish/functions/_tide_item_toolbox.fish @@ -0,0 +1,4 @@ +function _tide_item_toolbox + test -e /run/.toolboxenv && + _tide_print_item toolbox $tide_toolbox_icon' ' (string match -rg 'name="(.*)"' [\d.]+(-dev)?)" + _tide_print_item zig $tide_zig_icon' ' $v + end +end diff --git a/config/fish/functions/_tide_parent_dirs.fish b/config/fish/functions/_tide_parent_dirs.fish new file mode 100644 index 0000000..9f31b04 --- /dev/null +++ b/config/fish/functions/_tide_parent_dirs.fish @@ -0,0 +1,7 @@ +function _tide_parent_dirs --on-variable PWD + set -g _tide_parent_dirs (string escape ( + for dir in (string split / -- $PWD) + set -la parts $dir + string join / -- $parts + end)) +end diff --git a/config/fish/functions/_tide_print_item.fish b/config/fish/functions/_tide_print_item.fish new file mode 100644 index 0000000..db5c98b --- /dev/null +++ b/config/fish/functions/_tide_print_item.fish @@ -0,0 +1,22 @@ +function _tide_print_item -a item + v=tide_"$item"_bg_color set -f item_bg_color $$v + + if set -e add_prefix + set_color $item_bg_color -b normal + v=tide_"$_tide_side"_prompt_prefix echo -ns $$v + else if test "$item_bg_color" = "$prev_bg_color" + v=tide_"$_tide_side"_prompt_separator_same_color echo -ns $_tide_color_separator_same_color$$v + else if test $_tide_side = left + set_color $prev_bg_color -b $item_bg_color + echo -ns $tide_left_prompt_separator_diff_color + else + set_color $item_bg_color -b $prev_bg_color + echo -ns $tide_right_prompt_separator_diff_color + end + + v=tide_"$item"_color set_color $$v -b $item_bg_color + + echo -ns $_tide_pad $argv[2..] $_tide_pad + + set -g prev_bg_color $item_bg_color +end diff --git a/config/fish/functions/_tide_pwd.fish b/config/fish/functions/_tide_pwd.fish new file mode 100644 index 0000000..5447dd4 --- /dev/null +++ b/config/fish/functions/_tide_pwd.fish @@ -0,0 +1,42 @@ +set_color -o $tide_pwd_color_anchors | read -l color_anchors +set_color $tide_pwd_color_truncated_dirs | read -l color_truncated +set -l reset_to_color_dirs (set_color normal -b $tide_pwd_bg_color; set_color $tide_pwd_color_dirs) + +set -l unwritable_icon $tide_pwd_icon_unwritable' ' +set -l home_icon $tide_pwd_icon_home' ' +set -l pwd_icon $tide_pwd_icon' ' + +eval "function _tide_pwd + if set -l split_pwd (string replace -r '^$HOME' '~' -- \$PWD | string split /) + test -w . && set -f split_output \"$pwd_icon\$split_pwd[1]\" \$split_pwd[2..] || + set -f split_output \"$unwritable_icon\$split_pwd[1]\" \$split_pwd[2..] + set split_output[-1] \"$color_anchors\$split_output[-1]$reset_to_color_dirs\" + else + set -f split_output \"$home_icon$color_anchors~\" + end + + string join / -- \$split_output | string length -V | read -g _tide_pwd_len + + i=1 for dir_section in \$split_pwd[2..-2] + string join -- / \$split_pwd[..\$i] | string replace '~' $HOME | read -l parent_dir # Uses i before increment + + math \$i+1 | read i + + if path is \$parent_dir/\$dir_section/\$tide_pwd_markers + set split_output[\$i] \"$color_anchors\$dir_section$reset_to_color_dirs\" + else if test \$_tide_pwd_len -gt \$dist_btwn_sides + string match -qr \"(?\..|.)\" \$dir_section + + set -l glob \$parent_dir/\$trunc*/ + set -e glob[(contains -i \$parent_dir/\$dir_section/ \$glob)] # This is faster than inverse string match + + while string match -qr \"^\$parent_dir/\$(string escape --style=regex \$trunc)\" \$glob && + string match -qr \"(?\$(string escape --style=regex \$trunc).)\" \$dir_section + end + test -n \"\$trunc\" && set split_output[\$i] \"$color_truncated\$trunc$reset_to_color_dirs\" && + string join / \$split_output | string length -V | read _tide_pwd_len + end + end + + string join -- / \"$reset_to_color_dirs\$split_output[1]\" \$split_output[2..] +end" diff --git a/config/fish/functions/_tide_remove_unusable_items.fish b/config/fish/functions/_tide_remove_unusable_items.fish new file mode 100644 index 0000000..deb4c10 --- /dev/null +++ b/config/fish/functions/_tide_remove_unusable_items.fish @@ -0,0 +1,25 @@ +function _tide_remove_unusable_items + # Remove tool-specific items for tools the machine doesn't have installed + set -l removed_items + for item in aws crystal direnv distrobox docker elixir gcloud git go java kubectl nix_shell node php pulumi python ruby rustc terraform toolbox zig + contains $item $tide_left_prompt_items $tide_right_prompt_items || continue + + set -l cli_names $item + switch $item + case distrobox # there is no 'distrobox' command inside the container + set cli_names distrobox-export # 'distrobox-export' and 'distrobox-host-exec' are available + case nix_shell + set cli_names nix nix-shell + case python + set cli_names python python3 + end + type --query $cli_names || set -a removed_items $item + end + + set -U _tide_left_items (for item in $tide_left_prompt_items + contains $item $removed_items || echo $item + end) + set -U _tide_right_items (for item in $tide_right_prompt_items + contains $item $removed_items || echo $item + end) +end diff --git a/config/fish/functions/_tide_sub_bug-report.fish b/config/fish/functions/_tide_sub_bug-report.fish new file mode 100644 index 0000000..a8065c8 --- /dev/null +++ b/config/fish/functions/_tide_sub_bug-report.fish @@ -0,0 +1,73 @@ +function _tide_sub_bug-report + argparse c/clean v/verbose check -- $argv + + set -l fish_path (status fish-path) + + if set -q _flag_clean + HOME=(mktemp -d) $fish_path --init-command "curl --silent \ + https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | + source && fisher install ilancosman/tide@v6" + else if set -q _flag_verbose + set --long | string match -r "^_?tide.*" | # Get only tide variables + string match -r --invert "^_tide_prompt_var.*" # Remove _tide_prompt_var + else + set -l fish_version ($fish_path --version | string match -r "fish, version (\d\.\d\.\d)")[2] + _tide_check_version Fish fish-shell/fish-shell "(\d\.\d\.\d)" $fish_version || return + + set -l tide_version (tide --version | string match -r "tide, version (\d\.\d\.\d)")[2] + _tide_check_version Tide IlanCosman/tide "v(\d\.\d\.\d)" $tide_version || return + + if command --query git + test (git --version | string match -r "git version ([\d\.]*)" | string replace --all . '')[2] -gt 2220 + _tide_check_condition \ + "Your git version is too old." \ + "Tide requires at least version 2.22." \ + "Please update before submitting a bug report." || return + end + + # Check that omf is not installed + not functions --query omf + _tide_check_condition \ + "Tide does not work with oh-my-fish installed." \ + "Please uninstall it before submitting a bug report." || return + + if not set -q _flag_check + set -l fish_startup_time ($fish_path -ic "time $fish_path -c exit" 2>| + string match -r "Executed in(.*)fish" | string trim)[2] + + read --local --prompt-str "What operating system are you using? (e.g Ubuntu 20.04): " os + read --local --prompt-str "What terminal emulator are you using? (e.g Kitty): " terminal_emulator + + printf '%b\n' "\nPlease copy the following information into the issue:\n" \ + "fish version: $fish_version" \ + "tide version: $tide_version" \ + "term: $TERM" \ + "os: $os" \ + "terminal emulator: $terminal_emulator" \ + "fish startup: $fish_startup_time" \ + "fisher plugins: $_fisher_plugins" + end + end +end + +function _tide_check_version -a program_name repo_name regex_to_get_version current_version + curl --silent https://github.com/$repo_name/releases/latest | + string match -r ".*$repo_name/releases/tag/$regex_to_get_version.*" | + read --local --line __ latestVersion + + string match --quiet -r "^$latestVersion" "$current_version" + _tide_check_condition \ + "Your $program_name version is out of date." \ + "The latest is $latestVersion. You have $current_version." \ + "Please update before submitting a bug report." +end + +function _tide_check_condition + if test "$status" != 0 + set_color red + printf '%s\n' $argv + set_color normal + return 1 + end + return 0 +end diff --git a/config/fish/functions/_tide_sub_configure.fish b/config/fish/functions/_tide_sub_configure.fish new file mode 100644 index 0000000..22faf3a --- /dev/null +++ b/config/fish/functions/_tide_sub_configure.fish @@ -0,0 +1,156 @@ +set -g _tide_color_dark_blue 0087AF +set -g _tide_color_dark_green 5FAF00 +set -g _tide_color_gold D7AF00 +set -g _tide_color_green 5FD700 +set -g _tide_color_light_blue 00AFFF + +# Create an empty fake function for each item +for func in _fake(functions --all | string match --entire _tide_item) + function $func + end +end + +for file in (status dirname)/tide/configure/{choices, functions}/**.fish + source $file +end + +function _tide_sub_configure + set -l choices (path basename (status dirname)/tide/configure/choices/**.fish | path change-extension '') + argparse auto $choices= -- $argv + + for var in (set -l --names | string match -e _flag) + set -x $var $$var + end + + if set -q _flag_auto + set -fx _flag_finish 'Overwrite your current tide config' + else if test $COLUMNS -lt 55 -o $LINES -lt 21 + echo 'Terminal size too small; must be at least 55 x 21' + return 1 + end + + _tide_detect_os | read -g --line os_branding_icon os_branding_color os_branding_bg_color + + set -g fake_columns $COLUMNS + test $fake_columns -gt 90 && set fake_columns 90 + set -g fake_lines $LINES + + set -g _tide_selected_option + _next_choice all/style +end + +function _next_choice -a nextChoice + set -q _tide_selected_option || return 0 + set -l cmd (string split '/' $nextChoice)[2] + $cmd +end + +function _tide_title -a text + set -q _flag_auto && return + + command -q clear && clear + set_color -o + string pad --width (math --scale=0 "$fake_columns/2" + (string length $text)/2) $text + set_color normal + + set -g _tide_configure_first_option_after_title +end + +function _tide_option -a symbol text + set -ga _tide_symbol_list $symbol + set -ga _tide_option_list $text + + if not set -q _flag_auto + set -g _tide_configure_first_prompt_after_option + + set_color -o + set -e _tide_configure_first_option_after_title || echo + echo "($symbol) $text" + set_color normal + end +end + +function _tide_menu -a func + if set -q _flag_auto + set -l flag_var_name _flag_$func + set -g _tide_selected_option $$flag_var_name + + if test -z "$_tide_selected_option" + echo "Missing input for choice '$func'" + _tide_exit_configure + else if not contains $_tide_selected_option $_tide_option_list + echo "Invalid input '$_tide_selected_option' for choice '$func'" + _tide_exit_configure + else + set -e _tide_symbol_list + set -e _tide_option_list + end + return + end + + argparse no-restart -- $argv # Add no-restart option for first menu + + echo + if not set -q _flag_no_restart + set -f r r + echo '(r) Restart from the beginning' + end + echo '(q) Quit and do nothing'\n + + while read --nchars 1 --prompt-str \ + "$(set_color -o)Choice [$(string join '/' $_tide_symbol_list $r q)] $(set_color normal)" input + switch $input + case r + set -q _flag_no_restart && continue + set -e _tide_symbol_list + set -e _tide_option_list + _next_choice all/style + break + case q + _tide_exit_configure + set -e _tide_symbol_list + set -e _tide_option_list + command -q clear && clear + break + case $_tide_symbol_list + set -g _tide_selected_option $_tide_option_list[(contains -i $input $_tide_symbol_list)] + test "$func" != finish && + set -a _tide_configure_current_options --$func=(string escape $_tide_selected_option) + set -e _tide_symbol_list + set -e _tide_option_list + break + end + end +end + +function _tide_display_prompt + set -q _flag_auto && return + + _fake_tide_cache_variables + set -l prompt (_fake_tide_prompt) + + set -l bottom_left_prompt_string_length (string length --visible $prompt[-1]) + set -l right_prompt_string (string pad --width (math $fake_columns-$bottom_left_prompt_string_length) $prompt[1]) + set -l prompt[-1] "$prompt[-1]$right_prompt_string" + + if set -q _configure_transient + if contains newline $fake_tide_left_prompt_items + string unescape $prompt[3..] + else + _fake_tide_item_character + echo + end + else + if not set -q _tide_configure_first_prompt_after_option + test "$fake_tide_prompt_add_newline_before" = true && echo + end + string unescape $prompt[2..] + end + + set -e _tide_configure_first_prompt_after_option + set_color normal +end + +function _tide_exit_configure + set -e _tide_selected_option # Skip through all switch and _next_choice +end diff --git a/config/fish/functions/_tide_sub_reload.fish b/config/fish/functions/_tide_sub_reload.fish new file mode 100644 index 0000000..5a45fbd --- /dev/null +++ b/config/fish/functions/_tide_sub_reload.fish @@ -0,0 +1,3 @@ +function _tide_sub_reload + source (functions --details fish_prompt) +end diff --git a/config/fish/functions/fish_mode_prompt.fish b/config/fish/functions/fish_mode_prompt.fish new file mode 100644 index 0000000..f37cf7d --- /dev/null +++ b/config/fish/functions/fish_mode_prompt.fish @@ -0,0 +1 @@ +# Disable default vi prompt diff --git a/config/fish/functions/fish_prompt.1756710077.copy b/config/fish/functions/fish_prompt.1756710077.copy new file mode 100644 index 0000000..3b58b7b --- /dev/null +++ b/config/fish/functions/fish_prompt.1756710077.copy @@ -0,0 +1,171 @@ +function fish_prompt +end # In case this file gets loaded non-interactively, e.g by conda +status is-interactive || exit + +_tide_remove_unusable_items +_tide_cache_variables +_tide_parent_dirs +source (functions --details _tide_pwd) + +set -l prompt_var _tide_prompt_$fish_pid +set -U $prompt_var # Set var here so if we erase $prompt_var, bg job won't set a uvar + +set_color normal | read -l color_normal +status fish-path | read -l fish_path + +# _tide_repaint prevents us from creating a second background job +function _tide_refresh_prompt --on-variable $prompt_var --on-variable COLUMNS + set -g _tide_repaint + commandline -f repaint +end + +if contains newline $_tide_left_items # two line prompt initialization + test "$tide_prompt_add_newline_before" = true && set -l add_newline '\n' + + set_color $tide_prompt_color_frame_and_connection -b normal | read -l prompt_and_frame_color + + set -l column_offset 5 + test "$tide_left_prompt_frame_enabled" = true && + set -l top_left_frame "$prompt_and_frame_color╭─" && + set -l bot_left_frame "$prompt_and_frame_color╰─" && + set column_offset (math $column_offset-2) + test "$tide_right_prompt_frame_enabled" = true && + set -l top_right_frame "$prompt_and_frame_color─╮" && + set -l bot_right_frame "$prompt_and_frame_color─╯" && + set column_offset (math $column_offset-2) + + if test "$tide_prompt_transient_enabled" = true + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_2_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + if not set -q _tide_transient + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][3]\")+$column_offset | read -lx dist_btwn_sides + + echo -n $add_newline'$top_left_frame'(string replace @PWD@ (_tide_pwd) \"\$$prompt_var[1][1]\")'$prompt_and_frame_color' + string repeat -Nm(math max 0, \$dist_btwn_sides-\$_tide_pwd_len) '$tide_prompt_icon_connection' + + echo \"\$$prompt_var[1][3]$top_right_frame\" + end + echo -n \e\[0J\"$bot_left_frame\$$prompt_var[1][2]$color_normal \" +end + +function fish_right_prompt + set -e _tide_transient || string unescape \"\$$prompt_var[1][4]$bot_right_frame$color_normal\" +end" + else + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_2_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][3]\")+$column_offset | read -lx dist_btwn_sides + + echo -ns $add_newline'$top_left_frame'(string replace @PWD@ (_tide_pwd) \"\$$prompt_var[1][1]\")'$prompt_and_frame_color' + string repeat -Nm(math max 0, \$dist_btwn_sides-\$_tide_pwd_len) '$tide_prompt_icon_connection' + echo -ns \"\$$prompt_var[1][3]$top_right_frame\"\n\"$bot_left_frame\$$prompt_var[1][2]$color_normal \" +end + +function fish_right_prompt + string unescape \"\$$prompt_var[1][4]$bot_right_frame$color_normal\" +end" + end +else # one line prompt initialization + test "$tide_prompt_add_newline_before" = true && set -l add_newline '\0' + + math 5 -$tide_prompt_min_cols | read -l column_offset + test $column_offset -ge 0 && set column_offset "+$column_offset" + + if test "$tide_prompt_transient_enabled" = true + eval " +function fish_prompt + set -lx _tide_status \$status + _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_1_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + if set -q _tide_transient + echo -n \e\[0J + add_prefix= _tide_item_character + echo -n '$color_normal ' + else + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][2]\")$column_offset | read -lx dist_btwn_sides + string replace @PWD@ (_tide_pwd) $add_newline \$$prompt_var[1][1]'$color_normal ' + end +end + +function fish_right_prompt + set -e _tide_transient || string unescape \"\$$prompt_var[1][2]$color_normal\" +end" + else + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_1_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][2]\")$column_offset | read -lx dist_btwn_sides + string replace @PWD@ (_tide_pwd) $add_newline \$$prompt_var[1][1]'$color_normal ' +end + +function fish_right_prompt + string unescape \"\$$prompt_var[1][2]$color_normal\" +end" + end +end + +eval "function _tide_on_fish_exit --on-event fish_exit + set -e $prompt_var +end" + +if test "$tide_prompt_transient_enabled" = true + function _tide_enter_transient + # If the commandline will be executed, or is empty + if commandline --is-valid || test -z "$(commandline)" + # Pager open usually means selecting, not running + # Can be untrue, but it's better than the alternative + if not commandline --paging-mode + set -g _tide_transient + set -g _tide_repaint + commandline -f repaint + end + end + commandline -f execute + end + + bind \r _tide_enter_transient + bind \n _tide_enter_transient + bind -M insert \r _tide_enter_transient + bind -M insert \n _tide_enter_transient +end diff --git a/config/fish/functions/fish_prompt.fish b/config/fish/functions/fish_prompt.fish new file mode 100644 index 0000000..3b58b7b --- /dev/null +++ b/config/fish/functions/fish_prompt.fish @@ -0,0 +1,171 @@ +function fish_prompt +end # In case this file gets loaded non-interactively, e.g by conda +status is-interactive || exit + +_tide_remove_unusable_items +_tide_cache_variables +_tide_parent_dirs +source (functions --details _tide_pwd) + +set -l prompt_var _tide_prompt_$fish_pid +set -U $prompt_var # Set var here so if we erase $prompt_var, bg job won't set a uvar + +set_color normal | read -l color_normal +status fish-path | read -l fish_path + +# _tide_repaint prevents us from creating a second background job +function _tide_refresh_prompt --on-variable $prompt_var --on-variable COLUMNS + set -g _tide_repaint + commandline -f repaint +end + +if contains newline $_tide_left_items # two line prompt initialization + test "$tide_prompt_add_newline_before" = true && set -l add_newline '\n' + + set_color $tide_prompt_color_frame_and_connection -b normal | read -l prompt_and_frame_color + + set -l column_offset 5 + test "$tide_left_prompt_frame_enabled" = true && + set -l top_left_frame "$prompt_and_frame_color╭─" && + set -l bot_left_frame "$prompt_and_frame_color╰─" && + set column_offset (math $column_offset-2) + test "$tide_right_prompt_frame_enabled" = true && + set -l top_right_frame "$prompt_and_frame_color─╮" && + set -l bot_right_frame "$prompt_and_frame_color─╯" && + set column_offset (math $column_offset-2) + + if test "$tide_prompt_transient_enabled" = true + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_2_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + if not set -q _tide_transient + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][3]\")+$column_offset | read -lx dist_btwn_sides + + echo -n $add_newline'$top_left_frame'(string replace @PWD@ (_tide_pwd) \"\$$prompt_var[1][1]\")'$prompt_and_frame_color' + string repeat -Nm(math max 0, \$dist_btwn_sides-\$_tide_pwd_len) '$tide_prompt_icon_connection' + + echo \"\$$prompt_var[1][3]$top_right_frame\" + end + echo -n \e\[0J\"$bot_left_frame\$$prompt_var[1][2]$color_normal \" +end + +function fish_right_prompt + set -e _tide_transient || string unescape \"\$$prompt_var[1][4]$bot_right_frame$color_normal\" +end" + else + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_2_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][3]\")+$column_offset | read -lx dist_btwn_sides + + echo -ns $add_newline'$top_left_frame'(string replace @PWD@ (_tide_pwd) \"\$$prompt_var[1][1]\")'$prompt_and_frame_color' + string repeat -Nm(math max 0, \$dist_btwn_sides-\$_tide_pwd_len) '$tide_prompt_icon_connection' + echo -ns \"\$$prompt_var[1][3]$top_right_frame\"\n\"$bot_left_frame\$$prompt_var[1][2]$color_normal \" +end + +function fish_right_prompt + string unescape \"\$$prompt_var[1][4]$bot_right_frame$color_normal\" +end" + end +else # one line prompt initialization + test "$tide_prompt_add_newline_before" = true && set -l add_newline '\0' + + math 5 -$tide_prompt_min_cols | read -l column_offset + test $column_offset -ge 0 && set column_offset "+$column_offset" + + if test "$tide_prompt_transient_enabled" = true + eval " +function fish_prompt + set -lx _tide_status \$status + _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_1_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + if set -q _tide_transient + echo -n \e\[0J + add_prefix= _tide_item_character + echo -n '$color_normal ' + else + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][2]\")$column_offset | read -lx dist_btwn_sides + string replace @PWD@ (_tide_pwd) $add_newline \$$prompt_var[1][1]'$color_normal ' + end +end + +function fish_right_prompt + set -e _tide_transient || string unescape \"\$$prompt_var[1][2]$color_normal\" +end" + else + eval " +function fish_prompt + _tide_status=\$status _tide_pipestatus=\$pipestatus if not set -e _tide_repaint + jobs -q && jobs -p | count | read -lx _tide_jobs + $fish_path -c \"set _tide_pipestatus \$_tide_pipestatus +set _tide_parent_dirs \$_tide_parent_dirs +PATH=\$(string escape \"\$PATH\") CMD_DURATION=\$CMD_DURATION fish_bind_mode=\$fish_bind_mode set $prompt_var (_tide_1_line_prompt)\" & + builtin disown + + command kill \$_tide_last_pid 2>/dev/null + set -g _tide_last_pid \$last_pid + end + + math \$COLUMNS-(string length -V \"\$$prompt_var[1][1]\$$prompt_var[1][2]\")$column_offset | read -lx dist_btwn_sides + string replace @PWD@ (_tide_pwd) $add_newline \$$prompt_var[1][1]'$color_normal ' +end + +function fish_right_prompt + string unescape \"\$$prompt_var[1][2]$color_normal\" +end" + end +end + +eval "function _tide_on_fish_exit --on-event fish_exit + set -e $prompt_var +end" + +if test "$tide_prompt_transient_enabled" = true + function _tide_enter_transient + # If the commandline will be executed, or is empty + if commandline --is-valid || test -z "$(commandline)" + # Pager open usually means selecting, not running + # Can be untrue, but it's better than the alternative + if not commandline --paging-mode + set -g _tide_transient + set -g _tide_repaint + commandline -f repaint + end + end + commandline -f execute + end + + bind \r _tide_enter_transient + bind \n _tide_enter_transient + bind -M insert \r _tide_enter_transient + bind -M insert \n _tide_enter_transient +end diff --git a/config/fish/functions/fisher.fish b/config/fish/functions/fisher.fish new file mode 100644 index 0000000..e915cb8 --- /dev/null +++ b/config/fish/functions/fisher.fish @@ -0,0 +1,240 @@ +function fisher --argument-names cmd --description "A plugin manager for Fish" + set --query fisher_path || set --local fisher_path $__fish_config_dir + set --local fisher_version 4.4.5 + set --local fish_plugins $__fish_config_dir/fish_plugins + + switch "$cmd" + case -v --version + echo "fisher, version $fisher_version" + case "" -h --help + echo "Usage: fisher install Install plugins" + echo " fisher remove Remove installed plugins" + echo " fisher update Update installed plugins" + echo " fisher update Update all installed plugins" + echo " fisher list [] List installed plugins matching regex" + echo "Options:" + echo " -v, --version Print version" + echo " -h, --help Print this help message" + echo "Variables:" + echo " \$fisher_path Plugin installation path. Default: $__fish_config_dir" | string replace --regex -- $HOME \~ + case ls list + string match --entire --regex -- "$argv[2]" $_fisher_plugins + case install update remove + isatty || read --local --null --array stdin && set --append argv $stdin + + set --local install_plugins + set --local update_plugins + set --local remove_plugins + set --local arg_plugins $argv[2..-1] + set --local old_plugins $_fisher_plugins + set --local new_plugins + + test -e $fish_plugins && set --local file_plugins (string match --regex -- '^[^\s]+$' <$fish_plugins | string replace -- \~ ~) + + if ! set --query argv[2] + if test "$cmd" != update + echo "fisher: Not enough arguments for command: \"$cmd\"" >&2 && return 1 + else if ! set --query file_plugins + echo "fisher: \"$fish_plugins\" file not found: \"$cmd\"" >&2 && return 1 + end + set arg_plugins $file_plugins + end + + for plugin in $arg_plugins + set plugin (test -e "$plugin" && realpath $plugin || string lower -- $plugin) + contains -- "$plugin" $new_plugins || set --append new_plugins $plugin + end + + if set --query argv[2] + for plugin in $new_plugins + if contains -- "$plugin" $old_plugins + test "$cmd" = remove && + set --append remove_plugins $plugin || + set --append update_plugins $plugin + else if test "$cmd" = install + set --append install_plugins $plugin + else + echo "fisher: Plugin not installed: \"$plugin\"" >&2 && return 1 + end + end + else + for plugin in $new_plugins + contains -- "$plugin" $old_plugins && + set --append update_plugins $plugin || + set --append install_plugins $plugin + end + + for plugin in $old_plugins + contains -- "$plugin" $new_plugins || set --append remove_plugins $plugin + end + end + + set --local pid_list + set --local source_plugins + set --local fetch_plugins $update_plugins $install_plugins + set --local fish_path (status fish-path) + + echo (set_color --bold)fisher $cmd version $fisher_version(set_color normal) + + for plugin in $fetch_plugins + set --local source (command mktemp -d) + set --append source_plugins $source + + command mkdir -p $source/{completions,conf.d,themes,functions} + + $fish_path --command " + if test -e $plugin + command cp -Rf $plugin/* $source + else + set temp (command mktemp -d) + set repo (string split -- \@ $plugin) || set repo[2] HEAD + + if set path (string replace --regex -- '^(https://)?gitlab.com/' '' \$repo[1]) + set name (string split -- / \$path)[-1] + set url https://gitlab.com/\$path/-/archive/\$repo[2]/\$name-\$repo[2].tar.gz + else + set url https://api.github.com/repos/\$repo[1]/tarball/\$repo[2] + end + + echo Fetching (set_color --underline)\$url(set_color normal) + + if command curl -q --silent -L \$url | command tar -xzC \$temp -f - 2>/dev/null + command cp -Rf \$temp/*/* $source + else + echo fisher: Invalid plugin name or host unavailable: \\\"$plugin\\\" >&2 + command rm -rf $source + end + + command rm -rf \$temp + end + + set files $source/* && string match --quiet --regex -- .+\.fish\\\$ \$files + " & + + set --append pid_list (jobs --last --pid) + end + + wait $pid_list 2>/dev/null + + for plugin in $fetch_plugins + if set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)] && test ! -e $source + if set --local index (contains --index -- "$plugin" $install_plugins) + set --erase install_plugins[$index] + else + set --erase update_plugins[(contains --index -- "$plugin" $update_plugins)] + end + end + end + + for plugin in $update_plugins $remove_plugins + if set --local index (contains --index -- "$plugin" $_fisher_plugins) + set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files + + if contains -- "$plugin" $remove_plugins + for name in (string replace --filter --regex -- '.+/conf\.d/([^/]+)\.fish$' '$1' $$plugin_files_var) + emit {$name}_uninstall + end + printf "%s\n" Removing\ (set_color red --bold)$plugin(set_color normal) " "$$plugin_files_var | string replace -- \~ ~ + set --erase _fisher_plugins[$index] + end + + command rm -rf (string replace -- \~ ~ $$plugin_files_var) + + functions --erase (string replace --filter --regex -- '.+/functions/([^/]+)\.fish$' '$1' $$plugin_files_var) + + for name in (string replace --filter --regex -- '.+/completions/([^/]+)\.fish$' '$1' $$plugin_files_var) + complete --erase --command $name + end + + set --erase $plugin_files_var + end + end + + if set --query update_plugins[1] || set --query install_plugins[1] + command mkdir -p $fisher_path/{functions,themes,conf.d,completions} + end + + for plugin in $update_plugins $install_plugins + set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)] + set --local files $source/{functions,themes,conf.d,completions}/* + + if set --local index (contains --index -- $plugin $install_plugins) + set --local user_files $fisher_path/{functions,themes,conf.d,completions}/* + set --local conflict_files + + for file in (string replace -- $source/ $fisher_path/ $files) + contains -- $file $user_files && set --append conflict_files $file + end + + if set --query conflict_files[1] && set --erase install_plugins[$index] + echo -s "fisher: Cannot install \"$plugin\": please remove or move conflicting files first:" \n" "$conflict_files >&2 + continue + end + end + + for file in (string replace -- $source/ "" $files) + command cp -RLf $source/$file $fisher_path/$file + end + + set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files + + set --query files[1] && set --universal $plugin_files_var (string replace -- $source $fisher_path $files | string replace -- ~ \~) + + contains -- $plugin $_fisher_plugins || set --universal --append _fisher_plugins $plugin + contains -- $plugin $install_plugins && set --local event install || set --local event update + + printf "%s\n" Installing\ (set_color --bold)$plugin(set_color normal) " "$$plugin_files_var | string replace -- \~ ~ + + for file in (string match --regex -- '.+/[^/]+\.fish$' $$plugin_files_var | string replace -- \~ ~) + source $file + if set --local name (string replace --regex -- '.+conf\.d/([^/]+)\.fish$' '$1' $file) + emit {$name}_$event + end + end + end + + command rm -rf $source_plugins + + if set --query _fisher_plugins[1] + set --local commit_plugins + + for plugin in $file_plugins + contains -- (string lower -- $plugin) (string lower -- $_fisher_plugins) && set --append commit_plugins $plugin + end + + for plugin in $_fisher_plugins + contains -- (string lower -- $plugin) (string lower -- $commit_plugins) || set --append commit_plugins $plugin + end + + string replace --regex -- $HOME \~ $commit_plugins >$fish_plugins + else + set --erase _fisher_plugins + command rm -f $fish_plugins + end + + set --local total (count $install_plugins) (count $update_plugins) (count $remove_plugins) + + test "$total" != "0 0 0" && echo (string join ", " ( + test $total[1] = 0 || echo "Installed $total[1]") ( + test $total[2] = 0 || echo "Updated $total[2]") ( + test $total[3] = 0 || echo "Removed $total[3]") + ) plugin/s + case \* + echo "fisher: Unknown command: \"$cmd\"" >&2 && return 1 + end +end + +if ! set --query _fisher_upgraded_to_4_4 + set --universal _fisher_upgraded_to_4_4 + if functions --query _fisher_list + set --query XDG_DATA_HOME[1] || set --local XDG_DATA_HOME ~/.local/share + command rm -rf $XDG_DATA_HOME/fisher + functions --erase _fisher_{list,plugin_parse} + fisher update >/dev/null 2>/dev/null + else + for var in (set --names | string match --entire --regex '^_fisher_.+_files$') + set $var (string replace -- ~ \~ $$var) + end + functions --erase _fisher_fish_postexec + end +end diff --git a/config/fish/functions/tide.fish b/config/fish/functions/tide.fish new file mode 100644 index 0000000..092a722 --- /dev/null +++ b/config/fish/functions/tide.fish @@ -0,0 +1,28 @@ +function tide --description 'Manage your Tide prompt' + argparse --stop-nonopt v/version h/help -- $argv + + if set -q _flag_version + echo 'tide, version 6.1.1' + else if set -q _flag_help + _tide_help + else if functions --query _tide_sub_$argv[1] + _tide_sub_$argv[1] $argv[2..] + else + _tide_help + return 1 + end +end + +function _tide_help + printf %s\n \ + 'Usage: tide [options] subcommand [options]' \ + '' \ + 'Options:' \ + ' -v or --version print tide version number' \ + ' -h or --help print this help message' \ + '' \ + 'Subcommands:' \ + ' configure run interactive configuration wizard' \ + ' reload reload tide configuration' \ + ' bug-report print info for use in bug reports' +end diff --git a/config/fish/functions/tide/configure/choices/all/finish.fish b/config/fish/functions/tide/configure/choices/all/finish.fish new file mode 100644 index 0000000..f670b1e --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/finish.fish @@ -0,0 +1,46 @@ +function finish + _tide_title Finish + + echo + set_color red + _tide_option y 'Overwrite your current tide config' + set_color normal + echo + + _tide_option p 'Exit and print the config you just generated' + echo + + _tide_menu (status function) + switch $_tide_selected_option + case 'Overwrite your current tide config' + _tide_finish + command -q clear && clear + set -q _flag_auto || _tide_print_configure_current_options + case 'Exit and print the config you just generated' + _tide_exit_configure + command -q clear && clear + _tide_print_configure_current_options + end +end + +function _tide_finish + _tide_exit_configure + + # Deal with prompt char/vi mode + contains character $fake_tide_left_prompt_items || set -p fake_tide_left_prompt_items vi_mode + + # Set the real variables + for fakeVar in (set --names | string match -r "^fake_tide.*") + set -U (string replace 'fake_' '' $fakeVar) $$fakeVar + end + + # Make sure old prompt won't display + set -e $_tide_prompt_var 2>/dev/null + + # Re-initialize the prompt + tide reload +end + +function _tide_print_configure_current_options + _tide_fish_colorize "tide configure --auto $_tide_configure_current_options" +end diff --git a/config/fish/functions/tide/configure/choices/all/icons.fish b/config/fish/functions/tide/configure/choices/all/icons.fish new file mode 100644 index 0000000..be167bb --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/icons.fish @@ -0,0 +1,33 @@ +function icons + _tide_title Icons + + _tide_option 1 'Few icons' + _tide_display_prompt + + _tide_option 2 'Many icons' + _enable_icons + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case 'Few icons' + _disable_icons + end + _next_choice all/transient +end + +function _enable_icons + set -p fake_tide_left_prompt_items os + set -g fake_tide_pwd_icon  + set -g fake_tide_pwd_icon_home  + set -g fake_tide_cmd_duration_icon  + set -g fake_tide_git_icon  +end + +function _disable_icons + _tide_find_and_remove os fake_tide_left_prompt_items + set fake_tide_pwd_icon + set fake_tide_pwd_icon_home + set fake_tide_cmd_duration_icon + set fake_tide_git_icon +end diff --git a/config/fish/functions/tide/configure/choices/all/prompt_colors.fish b/config/fish/functions/tide/configure/choices/all/prompt_colors.fish new file mode 100644 index 0000000..247ef4e --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/prompt_colors.fish @@ -0,0 +1,26 @@ +function prompt_colors + _tide_title 'Prompt Colors' + + _tide_option 1 'True color' + _tide_display_prompt + + _tide_option 2 '16 colors' + _load_config "$_tide_configure_style"_16color + set -g _tide_16color true + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case 'True color' + _load_config "$_tide_configure_style" + set -e _tide_16color + switch $_tide_configure_style + case lean rainbow + _next_choice all/show_time + case classic + _next_choice classic/classic_prompt_color + end + case '16 colors' + _next_choice all/show_time + end +end diff --git a/config/fish/functions/tide/configure/choices/all/prompt_connection.fish b/config/fish/functions/tide/configure/choices/all/prompt_connection.fish new file mode 100644 index 0000000..ff76546 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/prompt_connection.fish @@ -0,0 +1,31 @@ +function prompt_connection + _tide_title 'Prompt Connection' + + _tide_option 1 Disconnected + set -g fake_tide_prompt_icon_connection ' ' + _tide_display_prompt + + _tide_option 2 Dotted + set -g fake_tide_prompt_icon_connection '·' + _tide_display_prompt + + _tide_option 3 Solid + set -g fake_tide_prompt_icon_connection '─' + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Disconnected + set -g fake_tide_prompt_icon_connection ' ' + case Dotted + set -g fake_tide_prompt_icon_connection '·' + case Solid + set -g fake_tide_prompt_icon_connection '─' + end + switch $_tide_configure_style + case lean + _next_choice all/prompt_connection_andor_frame_color + case classic rainbow + _next_choice powerline/powerline_right_prompt_frame + end +end diff --git a/config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish b/config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish new file mode 100644 index 0000000..cefbf2c --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish @@ -0,0 +1,40 @@ +function prompt_connection_andor_frame_color + if test "$_tide_16color" = true || + test "$fake_tide_left_prompt_frame_enabled" = false -a \ + "$fake_tide_right_prompt_frame_enabled" = false -a \ + "$fake_tide_prompt_icon_connection" = ' ' + _next_choice all/prompt_spacing + return 0 + end + + _tide_title "Connection & Frame Color" + + _tide_option 1 Lightest + set -g fake_tide_prompt_color_frame_and_connection 808080 + _tide_display_prompt + + _tide_option 2 Light + set -g fake_tide_prompt_color_frame_and_connection 6C6C6C + _tide_display_prompt + + _tide_option 3 Dark + set -g fake_tide_prompt_color_frame_and_connection 585858 + _tide_display_prompt + + _tide_option 4 Darkest + set -g fake_tide_prompt_color_frame_and_connection 444444 + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Lightest + set -g fake_tide_prompt_color_frame_and_connection 808080 + case Light + set -g fake_tide_prompt_color_frame_and_connection 6C6C6C + case Dark + set -g fake_tide_prompt_color_frame_and_connection 585858 + case Darkest + set -g fake_tide_prompt_color_frame_and_connection 444444 + end + _next_choice all/prompt_spacing +end diff --git a/config/fish/functions/tide/configure/choices/all/prompt_spacing.fish b/config/fish/functions/tide/configure/choices/all/prompt_spacing.fish new file mode 100644 index 0000000..f68be68 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/prompt_spacing.fish @@ -0,0 +1,22 @@ +function prompt_spacing + _tide_title 'Prompt Spacing' + + _tide_option 1 Compact + set -g fake_tide_prompt_add_newline_before false + _tide_display_prompt + _tide_display_prompt + + _tide_option 2 Sparse + set -g fake_tide_prompt_add_newline_before true + _tide_display_prompt + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Compact + set -g fake_tide_prompt_add_newline_before false + case Sparse + set -g fake_tide_prompt_add_newline_before true + end + _next_choice all/icons +end diff --git a/config/fish/functions/tide/configure/choices/all/show_time.fish b/config/fish/functions/tide/configure/choices/all/show_time.fish new file mode 100644 index 0000000..b66c785 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/show_time.fish @@ -0,0 +1,33 @@ +function show_time + _tide_title 'Show current time?' + + _tide_option 1 No + _tide_display_prompt + + set -a fake_tide_right_prompt_items time + + _tide_option 2 '24-hour format' + set -g fake_tide_time_format %T + _tide_display_prompt + + _tide_option 3 '12-hour format' + set -g fake_tide_time_format %r + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case No + set -g fake_tide_time_format '' + set -e fake_tide_right_prompt_items[-1] + case '24-hour format' + set -g fake_tide_time_format %T + case '12-hour format' + set -g fake_tide_time_format %r + end + switch $_tide_configure_style + case lean + _next_choice "$_tide_configure_style"/"$_tide_configure_style"_prompt_height + case classic rainbow + _next_choice "$_tide_configure_style"/"$_tide_configure_style"_prompt_separators + end +end diff --git a/config/fish/functions/tide/configure/choices/all/style.fish b/config/fish/functions/tide/configure/choices/all/style.fish new file mode 100644 index 0000000..fe9a58f --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/style.fish @@ -0,0 +1,36 @@ +function style + set -g _tide_configure_current_options + + _tide_title 'Prompt Style' + + _tide_option 1 Lean + _load_config lean + _tide_display_prompt + + _tide_option 2 Classic + _load_config classic + _tide_display_prompt + + _tide_option 3 Rainbow + _load_config rainbow + _tide_display_prompt + + _tide_menu (status function) --no-restart + switch $_tide_selected_option + case Lean + _load_config lean + set -g _tide_configure_style lean + case Classic + _load_config classic + set -g _tide_configure_style classic + case Rainbow + _load_config rainbow + set -g _tide_configure_style rainbow + end + _next_choice all/prompt_colors +end + +function _load_config -a name + string replace -r '^' 'set -g fake_' <(status dirname)/../../icons.fish | source + string replace -r '^' 'set -g fake_' <(status dirname)/../../configs/$name.fish | source +end diff --git a/config/fish/functions/tide/configure/choices/all/transient.fish b/config/fish/functions/tide/configure/choices/all/transient.fish new file mode 100644 index 0000000..df2b6b6 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/all/transient.fish @@ -0,0 +1,22 @@ +function transient + _tide_title 'Enable transient prompt?' + + _tide_option 1 No + _tide_display_prompt + _tide_display_prompt + _tide_display_prompt + + _tide_option 2 Yes + _configure_transient= _tide_display_prompt + _configure_transient= _tide_display_prompt + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case No + set fake_tide_prompt_transient_enabled false + case Yes + set fake_tide_prompt_transient_enabled true + end + _next_choice all/finish +end diff --git a/config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish b/config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish new file mode 100644 index 0000000..77ceeaf --- /dev/null +++ b/config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish @@ -0,0 +1,38 @@ +function classic_prompt_color + _tide_title 'Prompt Color' + + _tide_option 1 Lightest + _set_all_items_bg_color 585858 + _tide_display_prompt + + _tide_option 2 Light + _set_all_items_bg_color 444444 + _tide_display_prompt + + _tide_option 3 Dark + _set_all_items_bg_color 303030 + _tide_display_prompt + + _tide_option 4 Darkest + _set_all_items_bg_color 1C1C1C + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Lightest + _set_all_items_bg_color 585858 + case Light + _set_all_items_bg_color 444444 + case Dark + _set_all_items_bg_color 303030 + case Darkest + _set_all_items_bg_color 1C1C1C + end + _next_choice all/show_time +end + +function _set_all_items_bg_color -a color + for var in (set --names | string match -r "fake_.*_bg_color.*") + set $var $color + end +end diff --git a/config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish b/config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish new file mode 100644 index 0000000..20af6cd --- /dev/null +++ b/config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish @@ -0,0 +1,40 @@ +function classic_prompt_separators + _tide_title 'Prompt Separators' + + _tide_option 1 Angled + set -g fake_tide_left_prompt_separator_same_color  + set -g fake_tide_right_prompt_separator_same_color  + _tide_display_prompt + + _tide_option 2 Vertical + set -g fake_tide_left_prompt_separator_same_color │ + set -g fake_tide_right_prompt_separator_same_color │ + _tide_display_prompt + + _tide_option 3 Slanted + set -g fake_tide_left_prompt_separator_same_color ╱ + set -g fake_tide_right_prompt_separator_same_color ╱ + _tide_display_prompt + + _tide_option 4 Round + set -g fake_tide_left_prompt_separator_same_color  + set -g fake_tide_right_prompt_separator_same_color  + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Angled + set -g fake_tide_left_prompt_separator_same_color  + set -g fake_tide_right_prompt_separator_same_color  + case Vertical + set -g fake_tide_left_prompt_separator_same_color │ + set -g fake_tide_right_prompt_separator_same_color │ + case Slanted + set -g fake_tide_left_prompt_separator_same_color ╱ + set -g fake_tide_right_prompt_separator_same_color ╱ + case Round + set -g fake_tide_left_prompt_separator_same_color  + set -g fake_tide_right_prompt_separator_same_color  + end + _next_choice powerline/powerline_prompt_heads +end diff --git a/config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish b/config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish new file mode 100644 index 0000000..2077241 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish @@ -0,0 +1,26 @@ +function lean_prompt_height + _tide_title 'Prompt Height' + + _tide_option 1 'One line' + _tide_find_and_remove newline fake_tide_left_prompt_items + set -g fake_tide_left_prompt_suffix '' + _tide_display_prompt + + _tide_option 2 'Two lines' + set -g fake_tide_left_prompt_items $fake_tide_left_prompt_items[1..-2] newline $fake_tide_left_prompt_items[-1] + set -g fake_tide_left_prompt_suffix ' ' + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case 'One line' + _tide_find_and_remove newline fake_tide_left_prompt_items + set fake_tide_left_prompt_suffix '' + _next_choice all/prompt_connection_andor_frame_color + case 'Two lines' + _tide_find_and_remove newline fake_tide_left_prompt_items + set -g fake_tide_left_prompt_items $fake_tide_left_prompt_items[1..-2] newline $fake_tide_left_prompt_items[-1] + set -g fake_tide_left_prompt_suffix ' ' + _next_choice all/prompt_connection + end +end diff --git a/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish new file mode 100644 index 0000000..0030cad --- /dev/null +++ b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish @@ -0,0 +1,32 @@ +function powerline_prompt_heads + _tide_title 'Prompt Heads' + + _tide_option 1 Sharp + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + _tide_display_prompt + + _tide_option 2 Slanted + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + _tide_display_prompt + + _tide_option 3 Round + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Sharp + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + case Slanted + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + case Round + set -g fake_tide_left_prompt_suffix  + set -g fake_tide_right_prompt_prefix  + end + _next_choice powerline/powerline_prompt_tails +end diff --git a/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_style.fish b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_style.fish new file mode 100644 index 0000000..b374757 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_style.fish @@ -0,0 +1,51 @@ +function powerline_prompt_style + _tide_title 'Powerline Prompt Style' + + _tide_option 1 'One line' + _tide_find_and_remove newline fake_tide_left_prompt_items + _tide_find_and_remove character fake_tide_left_prompt_items + set fake_tide_left_prompt_frame_enabled false + set fake_tide_right_prompt_frame_enabled false + _tide_display_prompt + + set -a fake_tide_left_prompt_items newline + + _tide_option 2 'Two lines, character' + set -a fake_tide_left_prompt_items character + set fake_tide_left_prompt_frame_enabled false + set fake_tide_right_prompt_frame_enabled false + _tide_display_prompt + + _tide_option 3 'Two lines, frame' + _tide_find_and_remove character fake_tide_left_prompt_items + set fake_tide_left_prompt_frame_enabled true + set fake_tide_right_prompt_frame_enabled true + _tide_display_prompt + + _tide_option 4 'Two lines, character and frame' + set -a fake_tide_left_prompt_items character + set fake_tide_left_prompt_frame_enabled true + set fake_tide_right_prompt_frame_enabled true + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case 'One line' + _tide_find_and_remove newline fake_tide_left_prompt_items + _tide_find_and_remove character fake_tide_left_prompt_items + set fake_tide_left_prompt_frame_enabled false + set fake_tide_right_prompt_frame_enabled false + _next_choice all/prompt_connection_andor_frame_color + case 'Two lines, character' + set fake_tide_left_prompt_frame_enabled false + set fake_tide_right_prompt_frame_enabled false + _next_choice all/prompt_connection + case 'Two lines, frame' + _tide_find_and_remove character fake_tide_left_prompt_items + set fake_tide_left_prompt_frame_enabled true + set fake_tide_right_prompt_frame_enabled true + _next_choice all/prompt_connection + case 'Two lines, character and frame' + _next_choice all/prompt_connection + end +end diff --git a/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish new file mode 100644 index 0000000..6b1574b --- /dev/null +++ b/config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish @@ -0,0 +1,40 @@ +function powerline_prompt_tails + _tide_title 'Prompt Tails' + + _tide_option 1 Flat + set -g fake_tide_left_prompt_prefix '' + set -g fake_tide_right_prompt_suffix '' + _tide_display_prompt + + _tide_option 2 Sharp + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + _tide_display_prompt + + _tide_option 3 Slanted + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + _tide_display_prompt + + _tide_option 4 Round + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Flat + set -g fake_tide_left_prompt_prefix '' + set -g fake_tide_right_prompt_suffix '' + case Sharp + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + case Slanted + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + case Round + set -g fake_tide_left_prompt_prefix  + set -g fake_tide_right_prompt_suffix  + end + _next_choice powerline/powerline_prompt_style +end diff --git a/config/fish/functions/tide/configure/choices/powerline/powerline_right_prompt_frame.fish b/config/fish/functions/tide/configure/choices/powerline/powerline_right_prompt_frame.fish new file mode 100644 index 0000000..a2d0a5b --- /dev/null +++ b/config/fish/functions/tide/configure/choices/powerline/powerline_right_prompt_frame.fish @@ -0,0 +1,20 @@ +function powerline_right_prompt_frame + _tide_title 'Right Prompt Frame' + + _tide_option 1 No + set fake_tide_right_prompt_frame_enabled false + _tide_display_prompt + + _tide_option 2 Yes + set fake_tide_right_prompt_frame_enabled true + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case No + set fake_tide_right_prompt_frame_enabled false + case Yes + set fake_tide_right_prompt_frame_enabled true + end + _next_choice all/prompt_connection_andor_frame_color +end diff --git a/config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish b/config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish new file mode 100644 index 0000000..14b9319 --- /dev/null +++ b/config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish @@ -0,0 +1,40 @@ +function rainbow_prompt_separators + _tide_title 'Prompt Separators' + + _tide_option 1 Angled + set -g fake_tide_left_prompt_separator_diff_color  + set -g fake_tide_right_prompt_separator_diff_color  + _tide_display_prompt + + _tide_option 2 Vertical + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + _tide_display_prompt + + _tide_option 3 Slanted + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + _tide_display_prompt + + _tide_option 4 Round + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + _tide_display_prompt + + _tide_menu (status function) + switch $_tide_selected_option + case Angled + set -g fake_tide_left_prompt_separator_diff_color  + set -g fake_tide_right_prompt_separator_diff_color  + case Vertical + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + case Slanted + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + case Round + set -g fake_tide_left_prompt_separator_diff_color '' + set -g fake_tide_right_prompt_separator_diff_color '' + end + _next_choice powerline/powerline_prompt_heads +end diff --git a/config/fish/functions/tide/configure/configs/classic.fish b/config/fish/functions/tide/configure/configs/classic.fish new file mode 100644 index 0000000..8973cbc --- /dev/null +++ b/config/fish/functions/tide/configure/configs/classic.fish @@ -0,0 +1,116 @@ +tide_aws_bg_color 444444 +tide_aws_color FF9900 +tide_character_color $_tide_color_green +tide_character_color_failure FF0000 +tide_cmd_duration_bg_color 444444 +tide_cmd_duration_color 87875F +tide_cmd_duration_decimals 0 +tide_cmd_duration_threshold 3000 +tide_context_always_display false +tide_context_bg_color 444444 +tide_context_color_default D7AF87 +tide_context_color_root $_tide_color_gold +tide_context_color_ssh D7AF87 +tide_context_hostname_parts 1 +tide_crystal_bg_color 444444 +tide_crystal_color FFFFFF +tide_direnv_bg_color 444444 +tide_direnv_bg_color_denied 444444 +tide_direnv_color $_tide_color_gold +tide_direnv_color_denied FF0000 +tide_distrobox_bg_color 444444 +tide_distrobox_color FF00FF +tide_docker_bg_color 444444 +tide_docker_color 2496ED +tide_docker_default_contexts default colima +tide_elixir_bg_color 444444 +tide_elixir_color 4E2A8E +tide_gcloud_bg_color 444444 +tide_gcloud_color 4285F4 +tide_git_bg_color 444444 +tide_git_bg_color_unstable 444444 +tide_git_bg_color_urgent 444444 +tide_git_color_branch $_tide_color_green +tide_git_color_conflicted FF0000 +tide_git_color_dirty $_tide_color_gold +tide_git_color_operation FF0000 +tide_git_color_staged $_tide_color_gold +tide_git_color_stash $_tide_color_green +tide_git_color_untracked $_tide_color_light_blue +tide_git_color_upstream $_tide_color_green +tide_git_truncation_length 24 +tide_git_truncation_strategy +tide_go_bg_color 444444 +tide_go_color 00ACD7 +tide_java_bg_color 444444 +tide_java_color ED8B00 +tide_jobs_bg_color 444444 +tide_jobs_color $_tide_color_dark_green +tide_jobs_number_threshold 1000 +tide_kubectl_bg_color 444444 +tide_kubectl_color 326CE5 +tide_left_prompt_frame_enabled true +tide_left_prompt_items pwd git newline +tide_left_prompt_prefix '' +tide_left_prompt_separator_diff_color  +tide_left_prompt_separator_same_color  +tide_left_prompt_suffix  +tide_nix_shell_bg_color 444444 +tide_nix_shell_color 7EBAE4 +tide_node_bg_color 444444 +tide_node_color 44883E +tide_os_bg_color 444444 +tide_os_color EEEEEE +tide_php_bg_color 444444 +tide_php_color 617CBE +tide_private_mode_bg_color 444444 +tide_private_mode_color FFFFFF +tide_prompt_add_newline_before true +tide_prompt_color_frame_and_connection 6C6C6C +tide_prompt_color_separator_same_color 949494 +tide_prompt_min_cols 34 +tide_prompt_pad_items true +tide_prompt_transient_enabled false +tide_pulumi_bg_color 444444 +tide_pulumi_color F7BF2A +tide_pwd_bg_color 444444 +tide_pwd_color_anchors $_tide_color_light_blue +tide_pwd_color_dirs $_tide_color_dark_blue +tide_pwd_color_truncated_dirs 8787AF +tide_pwd_markers .bzr .citc .git .hg .node-version .python-version .ruby-version .shorten_folder_marker .svn .terraform Cargo.toml composer.json CVS go.mod package.json build.zig +tide_python_bg_color 444444 +tide_python_color 00AFAF +tide_right_prompt_frame_enabled true +tide_right_prompt_items status cmd_duration context jobs direnv node python rustc java php pulumi ruby go gcloud kubectl distrobox toolbox terraform aws nix_shell crystal elixir zig +tide_right_prompt_prefix  +tide_right_prompt_separator_diff_color  +tide_right_prompt_separator_same_color  +tide_right_prompt_suffix '' +tide_ruby_bg_color 444444 +tide_ruby_color B31209 +tide_rustc_bg_color 444444 +tide_rustc_color F74C00 +tide_shlvl_bg_color 444444 +tide_shlvl_color d78700 +tide_shlvl_threshold 1 +tide_status_bg_color 444444 +tide_status_bg_color_failure 444444 +tide_status_color $_tide_color_dark_green +tide_status_color_failure D70000 +tide_terraform_bg_color 444444 +tide_terraform_color 844FBA +tide_time_bg_color 444444 +tide_time_color 5F8787 +tide_time_format %T +tide_toolbox_bg_color 444444 +tide_toolbox_color 613583 +tide_vi_mode_bg_color_default 444444 +tide_vi_mode_bg_color_insert 444444 +tide_vi_mode_bg_color_replace 444444 +tide_vi_mode_bg_color_visual 444444 +tide_vi_mode_color_default 949494 +tide_vi_mode_color_insert 87AFAF +tide_vi_mode_color_replace 87AF87 +tide_vi_mode_color_visual FF8700 +tide_zig_bg_color 444444 +tide_zig_color F7A41D diff --git a/config/fish/functions/tide/configure/configs/classic_16color.fish b/config/fish/functions/tide/configure/configs/classic_16color.fish new file mode 100644 index 0000000..670170f --- /dev/null +++ b/config/fish/functions/tide/configure/configs/classic_16color.fish @@ -0,0 +1,89 @@ +tide_aws_bg_color black +tide_aws_color yellow +tide_character_color brgreen +tide_character_color_failure brred +tide_cmd_duration_bg_color black +tide_cmd_duration_color brblack +tide_context_bg_color black +tide_context_color_default yellow +tide_context_color_root bryellow +tide_context_color_ssh yellow +tide_crystal_bg_color black +tide_crystal_color brwhite +tide_direnv_bg_color black +tide_direnv_bg_color_denied black +tide_direnv_color bryellow +tide_direnv_color_denied brred +tide_distrobox_bg_color black +tide_distrobox_color brmagenta +tide_docker_bg_color black +tide_docker_color blue +tide_elixir_bg_color black +tide_elixir_color magenta +tide_gcloud_bg_color black +tide_gcloud_color blue +tide_git_bg_color black +tide_git_bg_color_unstable black +tide_git_bg_color_urgent black +tide_git_color_branch brgreen +tide_git_color_conflicted brred +tide_git_color_dirty bryellow +tide_git_color_operation brred +tide_git_color_staged bryellow +tide_git_color_stash brgreen +tide_git_color_untracked brblue +tide_git_color_upstream brgreen +tide_go_bg_color black +tide_go_color brcyan +tide_java_bg_color black +tide_java_color yellow +tide_jobs_bg_color black +tide_jobs_color green +tide_kubectl_bg_color black +tide_kubectl_color blue +tide_nix_shell_bg_color black +tide_nix_shell_color brblue +tide_node_bg_color black +tide_node_color green +tide_os_bg_color black +tide_os_color brwhite +tide_php_bg_color black +tide_php_color blue +tide_private_mode_bg_color black +tide_private_mode_color brwhite +tide_prompt_color_frame_and_connection brblack +tide_prompt_color_separator_same_color brblack +tide_pulumi_bg_color black +tide_pulumi_color yellow +tide_pwd_bg_color black +tide_pwd_color_anchors brcyan +tide_pwd_color_dirs cyan +tide_pwd_color_truncated_dirs magenta +tide_python_bg_color black +tide_python_color cyan +tide_ruby_bg_color black +tide_ruby_color red +tide_rustc_bg_color black +tide_rustc_color red +tide_shlvl_bg_color black +tide_shlvl_color yellow +tide_status_bg_color black +tide_status_bg_color_failure black +tide_status_color green +tide_status_color_failure red +tide_terraform_bg_color black +tide_terraform_color magenta +tide_time_bg_color black +tide_time_color brblack +tide_toolbox_bg_color black +tide_toolbox_color magenta +tide_vi_mode_bg_color_default black +tide_vi_mode_bg_color_insert black +tide_vi_mode_bg_color_replace black +tide_vi_mode_bg_color_visual black +tide_vi_mode_color_default white +tide_vi_mode_color_insert cyan +tide_vi_mode_color_replace green +tide_vi_mode_color_visual yellow +tide_zig_bg_color black +tide_zig_color yellow diff --git a/config/fish/functions/tide/configure/configs/lean.fish b/config/fish/functions/tide/configure/configs/lean.fish new file mode 100644 index 0000000..a958a17 --- /dev/null +++ b/config/fish/functions/tide/configure/configs/lean.fish @@ -0,0 +1,116 @@ +tide_aws_bg_color normal +tide_aws_color FF9900 +tide_character_color $_tide_color_green +tide_character_color_failure FF0000 +tide_cmd_duration_bg_color normal +tide_cmd_duration_color 87875F +tide_cmd_duration_decimals 0 +tide_cmd_duration_threshold 3000 +tide_context_always_display false +tide_context_bg_color normal +tide_context_color_default D7AF87 +tide_context_color_root $_tide_color_gold +tide_context_color_ssh D7AF87 +tide_context_hostname_parts 1 +tide_crystal_bg_color normal +tide_crystal_color FFFFFF +tide_direnv_bg_color normal +tide_direnv_bg_color_denied normal +tide_direnv_color $_tide_color_gold +tide_direnv_color_denied FF0000 +tide_distrobox_bg_color normal +tide_distrobox_color FF00FF +tide_docker_bg_color normal +tide_docker_color 2496ED +tide_docker_default_contexts default colima +tide_elixir_bg_color normal +tide_elixir_color 4E2A8E +tide_gcloud_bg_color normal +tide_gcloud_color 4285F4 +tide_git_bg_color normal +tide_git_bg_color_unstable normal +tide_git_bg_color_urgent normal +tide_git_color_branch $_tide_color_green +tide_git_color_conflicted FF0000 +tide_git_color_dirty $_tide_color_gold +tide_git_color_operation FF0000 +tide_git_color_staged $_tide_color_gold +tide_git_color_stash $_tide_color_green +tide_git_color_untracked $_tide_color_light_blue +tide_git_color_upstream $_tide_color_green +tide_git_truncation_length 24 +tide_git_truncation_strategy +tide_go_bg_color normal +tide_go_color 00ACD7 +tide_java_bg_color normal +tide_java_color ED8B00 +tide_jobs_bg_color normal +tide_jobs_color $_tide_color_dark_green +tide_jobs_number_threshold 1000 +tide_kubectl_bg_color normal +tide_kubectl_color 326CE5 +tide_left_prompt_frame_enabled false +tide_left_prompt_items pwd git newline character +tide_left_prompt_prefix '' +tide_left_prompt_separator_diff_color ' ' +tide_left_prompt_separator_same_color ' ' +tide_left_prompt_suffix ' ' +tide_nix_shell_bg_color normal +tide_nix_shell_color 7EBAE4 +tide_node_bg_color normal +tide_node_color 44883E +tide_os_bg_color normal +tide_os_color normal +tide_php_bg_color normal +tide_php_color 617CBE +tide_private_mode_bg_color normal +tide_private_mode_color FFFFFF +tide_prompt_add_newline_before true +tide_prompt_color_frame_and_connection 6C6C6C +tide_prompt_color_separator_same_color 949494 +tide_prompt_min_cols 34 +tide_prompt_pad_items false +tide_prompt_transient_enabled false +tide_pulumi_bg_color normal +tide_pulumi_color F7BF2A +tide_pwd_bg_color normal +tide_pwd_color_anchors $_tide_color_light_blue +tide_pwd_color_dirs $_tide_color_dark_blue +tide_pwd_color_truncated_dirs 8787AF +tide_pwd_markers .bzr .citc .git .hg .node-version .python-version .ruby-version .shorten_folder_marker .svn .terraform Cargo.toml composer.json CVS go.mod package.json build.zig +tide_python_bg_color normal +tide_python_color 00AFAF +tide_right_prompt_frame_enabled false +tide_right_prompt_items status cmd_duration context jobs direnv node python rustc java php pulumi ruby go gcloud kubectl distrobox toolbox terraform aws nix_shell crystal elixir zig +tide_right_prompt_prefix ' ' +tide_right_prompt_separator_diff_color ' ' +tide_right_prompt_separator_same_color ' ' +tide_right_prompt_suffix '' +tide_ruby_bg_color normal +tide_ruby_color B31209 +tide_rustc_bg_color normal +tide_rustc_color F74C00 +tide_shlvl_bg_color normal +tide_shlvl_color d78700 +tide_shlvl_threshold 1 +tide_status_bg_color normal +tide_status_bg_color_failure normal +tide_status_color $_tide_color_dark_green +tide_status_color_failure D70000 +tide_terraform_bg_color normal +tide_terraform_color 844FBA +tide_time_bg_color normal +tide_time_color 5F8787 +tide_time_format %T +tide_toolbox_bg_color normal +tide_toolbox_color 613583 +tide_vi_mode_bg_color_default normal +tide_vi_mode_bg_color_insert normal +tide_vi_mode_bg_color_replace normal +tide_vi_mode_bg_color_visual normal +tide_vi_mode_color_default 949494 +tide_vi_mode_color_insert 87AFAF +tide_vi_mode_color_replace 87AF87 +tide_vi_mode_color_visual FF8700 +tide_zig_bg_color normal +tide_zig_color F7A41D diff --git a/config/fish/functions/tide/configure/configs/lean_16color.fish b/config/fish/functions/tide/configure/configs/lean_16color.fish new file mode 100644 index 0000000..16c2511 --- /dev/null +++ b/config/fish/functions/tide/configure/configs/lean_16color.fish @@ -0,0 +1,89 @@ +tide_aws_bg_color normal +tide_aws_color yellow +tide_character_color brgreen +tide_character_color_failure brred +tide_cmd_duration_bg_color normal +tide_cmd_duration_color brblack +tide_context_bg_color normal +tide_context_color_default yellow +tide_context_color_root bryellow +tide_context_color_ssh yellow +tide_crystal_bg_color normal +tide_crystal_color brwhite +tide_direnv_bg_color normal +tide_direnv_bg_color_denied normal +tide_direnv_color bryellow +tide_direnv_color_denied brred +tide_distrobox_bg_color normal +tide_distrobox_color brmagenta +tide_docker_bg_color normal +tide_docker_color blue +tide_elixir_bg_color normal +tide_elixir_color magenta +tide_gcloud_bg_color normal +tide_gcloud_color blue +tide_git_bg_color normal +tide_git_bg_color_unstable normal +tide_git_bg_color_urgent normal +tide_git_color_branch brgreen +tide_git_color_conflicted brred +tide_git_color_dirty bryellow +tide_git_color_operation brred +tide_git_color_staged bryellow +tide_git_color_stash brgreen +tide_git_color_untracked brblue +tide_git_color_upstream brgreen +tide_go_bg_color normal +tide_go_color brcyan +tide_java_bg_color normal +tide_java_color yellow +tide_jobs_bg_color normal +tide_jobs_color green +tide_kubectl_bg_color normal +tide_kubectl_color blue +tide_nix_shell_bg_color normal +tide_nix_shell_color brblue +tide_node_bg_color normal +tide_node_color green +tide_os_bg_color normal +tide_os_color brwhite +tide_php_bg_color normal +tide_php_color blue +tide_private_mode_bg_color normal +tide_private_mode_color brwhite +tide_prompt_color_frame_and_connection brblack +tide_prompt_color_separator_same_color brblack +tide_pulumi_bg_color normal +tide_pulumi_color yellow +tide_pwd_bg_color normal +tide_pwd_color_anchors brcyan +tide_pwd_color_dirs cyan +tide_pwd_color_truncated_dirs magenta +tide_python_bg_color normal +tide_python_color cyan +tide_ruby_bg_color normal +tide_ruby_color red +tide_rustc_bg_color normal +tide_rustc_color red +tide_shlvl_bg_color normal +tide_shlvl_color yellow +tide_status_bg_color normal +tide_status_bg_color_failure normal +tide_status_color green +tide_status_color_failure red +tide_terraform_bg_color normal +tide_terraform_color magenta +tide_time_bg_color normal +tide_time_color brblack +tide_toolbox_bg_color normal +tide_toolbox_color magenta +tide_vi_mode_bg_color_default normal +tide_vi_mode_bg_color_insert normal +tide_vi_mode_bg_color_replace normal +tide_vi_mode_bg_color_visual normal +tide_vi_mode_color_default white +tide_vi_mode_color_insert cyan +tide_vi_mode_color_replace green +tide_vi_mode_color_visual yellow +tide_zig_bg_color normal +tide_zig_color yellow diff --git a/config/fish/functions/tide/configure/configs/rainbow.fish b/config/fish/functions/tide/configure/configs/rainbow.fish new file mode 100644 index 0000000..60c1592 --- /dev/null +++ b/config/fish/functions/tide/configure/configs/rainbow.fish @@ -0,0 +1,116 @@ +tide_aws_bg_color FF9900 +tide_aws_color 232F3E +tide_character_color $_tide_color_green +tide_character_color_failure FF0000 +tide_cmd_duration_bg_color C4A000 +tide_cmd_duration_color 000000 +tide_cmd_duration_decimals 0 +tide_cmd_duration_threshold 3000 +tide_context_always_display false +tide_context_bg_color 444444 +tide_context_color_default D7AF87 +tide_context_color_root $_tide_color_gold +tide_context_color_ssh D7AF87 +tide_context_hostname_parts 1 +tide_crystal_bg_color FFFFFF +tide_crystal_color 000000 +tide_direnv_bg_color $_tide_color_gold +tide_direnv_bg_color_denied FF0000 +tide_direnv_color 000000 +tide_direnv_color_denied 000000 +tide_distrobox_bg_color FF00FF +tide_distrobox_color 000000 +tide_docker_bg_color 2496ED +tide_docker_color 000000 +tide_docker_default_contexts default colima +tide_elixir_bg_color 4E2A8E +tide_elixir_color 000000 +tide_gcloud_bg_color 4285F4 +tide_gcloud_color 000000 +tide_git_bg_color 4E9A06 +tide_git_bg_color_unstable C4A000 +tide_git_bg_color_urgent CC0000 +tide_git_color_branch 000000 +tide_git_color_conflicted 000000 +tide_git_color_dirty 000000 +tide_git_color_operation 000000 +tide_git_color_staged 000000 +tide_git_color_stash 000000 +tide_git_color_untracked 000000 +tide_git_color_upstream 000000 +tide_git_truncation_length 24 +tide_git_truncation_strategy +tide_go_bg_color 00ACD7 +tide_go_color 000000 +tide_java_bg_color ED8B00 +tide_java_color 000000 +tide_jobs_bg_color 444444 +tide_jobs_color 4E9A06 +tide_jobs_number_threshold 1000 +tide_kubectl_bg_color 326CE5 +tide_kubectl_color 000000 +tide_left_prompt_frame_enabled true +tide_left_prompt_items pwd git newline +tide_left_prompt_prefix '' +tide_left_prompt_separator_diff_color  +tide_left_prompt_separator_same_color  +tide_left_prompt_suffix  +tide_nix_shell_bg_color 7EBAE4 +tide_nix_shell_color 000000 +tide_node_bg_color 44883E +tide_node_color 000000 +tide_os_bg_color $os_branding_bg_color +tide_os_color $os_branding_color +tide_php_bg_color 617CBE +tide_php_color 000000 +tide_private_mode_bg_color F1F3F4 +tide_private_mode_color 000000 +tide_prompt_add_newline_before true +tide_prompt_color_frame_and_connection 6C6C6C +tide_prompt_color_separator_same_color 949494 +tide_prompt_min_cols 34 +tide_prompt_pad_items true +tide_prompt_transient_enabled false +tide_pulumi_bg_color F7BF2A +tide_pulumi_color 000000 +tide_pwd_bg_color 3465A4 +tide_pwd_color_anchors E4E4E4 +tide_pwd_color_dirs E4E4E4 +tide_pwd_color_truncated_dirs BCBCBC +tide_pwd_markers .bzr .citc .git .hg .node-version .python-version .ruby-version .shorten_folder_marker .svn .terraform Cargo.toml composer.json CVS go.mod package.json build.zig +tide_python_bg_color 444444 +tide_python_color 00AFAF +tide_right_prompt_frame_enabled true +tide_right_prompt_items status cmd_duration context jobs direnv node python rustc java php pulumi ruby go gcloud kubectl distrobox toolbox terraform aws nix_shell crystal elixir zig +tide_right_prompt_prefix  +tide_right_prompt_separator_diff_color  +tide_right_prompt_separator_same_color  +tide_right_prompt_suffix '' +tide_ruby_bg_color B31209 +tide_ruby_color 000000 +tide_rustc_bg_color F74C00 +tide_rustc_color 000000 +tide_shlvl_bg_color 808000 +tide_shlvl_color 000000 +tide_shlvl_threshold 1 +tide_status_bg_color 2E3436 +tide_status_bg_color_failure CC0000 +tide_status_color 4E9A06 +tide_status_color_failure FFFF00 +tide_terraform_bg_color 800080 +tide_terraform_color 000000 +tide_time_bg_color D3D7CF +tide_time_color 000000 +tide_time_format %T +tide_toolbox_bg_color 613583 +tide_toolbox_color 000000 +tide_vi_mode_bg_color_default 949494 +tide_vi_mode_bg_color_insert 87AFAF +tide_vi_mode_bg_color_replace 87AF87 +tide_vi_mode_bg_color_visual FF8700 +tide_vi_mode_color_default 000000 +tide_vi_mode_color_insert 000000 +tide_vi_mode_color_replace 000000 +tide_vi_mode_color_visual 000000 +tide_zig_bg_color F7A41D +tide_zig_color 000000 diff --git a/config/fish/functions/tide/configure/configs/rainbow_16color.fish b/config/fish/functions/tide/configure/configs/rainbow_16color.fish new file mode 100644 index 0000000..a040f58 --- /dev/null +++ b/config/fish/functions/tide/configure/configs/rainbow_16color.fish @@ -0,0 +1,93 @@ +tide_aws_bg_color yellow +tide_aws_color brblack +tide_character_color brgreen +tide_character_color_failure brred +tide_cmd_duration_bg_color yellow +tide_cmd_duration_color black +tide_context_bg_color brblack +tide_context_color_default yellow +tide_context_color_root yellow +tide_context_color_ssh yellow +tide_crystal_bg_color brwhite +tide_crystal_color black +tide_direnv_bg_color bryellow +tide_direnv_bg_color_denied brred +tide_direnv_color black +tide_direnv_color_denied black +tide_distrobox_bg_color brmagenta +tide_distrobox_color black +tide_docker_bg_color blue +tide_docker_color black +tide_elixir_bg_color magenta +tide_elixir_color black +tide_gcloud_bg_color blue +tide_gcloud_color black +tide_git_bg_color green +tide_git_bg_color_unstable yellow +tide_git_bg_color_urgent red +tide_git_color_branch black +tide_git_color_conflicted black +tide_git_color_dirty black +tide_git_color_operation black +tide_git_color_staged black +tide_git_color_stash black +tide_git_color_untracked black +tide_git_color_upstream black +tide_go_bg_color brcyan +tide_go_color black +tide_java_bg_color yellow +tide_java_color black +tide_jobs_bg_color brblack +tide_jobs_color green +tide_kubectl_bg_color blue +tide_kubectl_color black +tide_nix_shell_bg_color brblue +tide_nix_shell_color black +tide_node_bg_color green +tide_node_color black +tide_os_bg_color white +tide_os_color black +tide_php_bg_color blue +tide_php_color black +tide_private_mode_bg_color brwhite +tide_private_mode_color black +tide_prompt_color_frame_and_connection brblack +tide_prompt_color_separator_same_color brblack +tide_pulumi_bg_color yellow +tide_pulumi_color black +tide_pwd_bg_color blue +tide_pwd_color_anchors brwhite +tide_pwd_color_dirs brwhite +tide_pwd_color_truncated_dirs white +tide_python_bg_color brblack +tide_python_color cyan +tide_ruby_bg_color red +tide_ruby_color black +tide_rustc_bg_color red +tide_rustc_color black +tide_shlvl_bg_color yellow +tide_shlvl_color black +tide_status_bg_color black +tide_status_bg_color_failure red +tide_status_color green +tide_status_color_failure bryellow +tide_terraform_bg_color magenta +tide_terraform_color black +tide_time_bg_color white +tide_time_color black +tide_toolbox_bg_color magenta +tide_toolbox_color black +tide_vi_mode_bg_color_default white +tide_vi_mode_bg_color_insert cyan +tide_vi_mode_bg_color_replace green +tide_vi_mode_bg_color_visual yellow +tide_vi_mode_color_default black +tide_vi_mode_color_insert black +tide_vi_mode_color_replace black +tide_vi_mode_color_visual black +tide_vi_mode_icon_default D +tide_vi_mode_icon_insert I +tide_vi_mode_icon_replace R +tide_vi_mode_icon_visual V +tide_zig_bg_color yellow +tide_zig_color black diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_cache_variables.fish b/config/fish/functions/tide/configure/functions/_fake_tide_cache_variables.fish new file mode 100644 index 0000000..4661ab1 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_cache_variables.fish @@ -0,0 +1,41 @@ +function _fake_tide_cache_variables + # pwd + set_color -o $fake_tide_pwd_color_anchors | read -gx _fake_tide_color_anchors + set -gx _fake_tide_color_truncated_dirs "$(set_color $fake_tide_pwd_color_truncated_dirs)" + set -gx _fake_tide_reset_to_color_dirs (set_color normal -b $fake_tide_pwd_bg_color; set_color $fake_tide_pwd_color_dirs) + + # git + contains git $fake_tide_left_prompt_items $fake_tide_right_prompt_items && + set -gx _fake_tide_location_color "$(set_color $fake_tide_git_color_branch)" + + # private_mode + if contains private_mode $fake_tide_left_prompt_items $fake_tide_right_prompt_items && test -n "$fish_private_mode" + set -gx _fake_tide_private_mode + else + set -e _fake_tide_private_mode + end + + # Same-color-separator color + set -gx _fake_tide_color_separator_same_color "$(set_color $fake_tide_prompt_color_separator_same_color)" + + # two line prompt + if contains newline $fake_tide_left_prompt_items + set_color $fake_tide_prompt_color_frame_and_connection -b normal | read -gx _fake_tide_prompt_and_frame_color + else + set -e _fake_tide_prompt_and_frame_color + end + + # newline before + if test "$fake_tide_prompt_add_newline_before" = true + set -g _fake_tide_add_newline '' + else + set -e _fake_tide_add_newline + end + + # item padding + if test "$fake_tide_prompt_pad_items" = true + set -gx _fake_tide_pad ' ' + else + set -e _fake_tide_pad + end +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_character.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_character.fish new file mode 100644 index 0000000..94892ec --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_character.fish @@ -0,0 +1,8 @@ +function _fake_tide_item_character + set_color $fake_tide_character_color + if contains newline $fake_tide_left_prompt_items || set -q _configure_transient + echo -ns $fake_tide_character_icon + else + echo -ns ' '$fake_tide_character_icon + end +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_cmd_duration.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_cmd_duration.fish new file mode 100644 index 0000000..5aa13b2 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_cmd_duration.fish @@ -0,0 +1,3 @@ +function _fake_tide_item_cmd_duration + _fake_tide_print_item cmd_duration $fake_tide_cmd_duration_icon' ' 5s +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_git.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_git.fish new file mode 100644 index 0000000..fb5b957 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_git.fish @@ -0,0 +1,3 @@ +function _fake_tide_item_git + _fake_tide_print_item git (set_color $fake_tide_git_color_branch) $fake_tide_git_icon' ' main +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_newline.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_newline.fish new file mode 100644 index 0000000..c614bab --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_newline.fish @@ -0,0 +1,5 @@ +function _fake_tide_item_newline + set_color $prev_bg_color -b normal + var=fake_tide_"$_fake_tide_side"_prompt_suffix echo $$var + set -g add_prefix +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_os.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_os.fish new file mode 100644 index 0000000..5255721 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_os.fish @@ -0,0 +1,3 @@ +function _fake_tide_item_os + _fake_tide_print_item os $fake_tide_os_icon +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_item_time.fish b/config/fish/functions/tide/configure/functions/_fake_tide_item_time.fish new file mode 100644 index 0000000..bbce0b5 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_item_time.fish @@ -0,0 +1,3 @@ +function _fake_tide_item_time + _fake_tide_print_item time (date +$fake_tide_time_format) +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_print_item.fish b/config/fish/functions/tide/configure/functions/_fake_tide_print_item.fish new file mode 100644 index 0000000..30cd024 --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_print_item.fish @@ -0,0 +1,22 @@ +function _fake_tide_print_item -a item + var=fake_tide_"$item"_bg_color set -f item_bg_color $$var + + if set -e add_prefix + set_color $item_bg_color -b normal + var=fake_tide_"$_fake_tide_side"_prompt_prefix echo -ns $$var + else if test "$item_bg_color" = "$prev_bg_color" + var=fake_tide_"$_fake_tide_side"_prompt_separator_same_color echo -ns $_fake_tide_color_separator_same_color$$var + else if test "$_fake_tide_side" = left + set_color $prev_bg_color -b $item_bg_color + echo -ns $fake_tide_left_prompt_separator_diff_color + else + set_color $item_bg_color -b $prev_bg_color + echo -ns $fake_tide_right_prompt_separator_diff_color + end + + var=fake_tide_"$item"_color set_color $$var -b $item_bg_color + + echo -ns $_fake_tide_pad $argv[2..] $_fake_tide_pad + + set -g prev_bg_color $item_bg_color +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_prompt.fish b/config/fish/functions/tide/configure/functions/_fake_tide_prompt.fish new file mode 100644 index 0000000..11f20ca --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_prompt.fish @@ -0,0 +1,42 @@ +function _fake_tide_prompt + set -g add_prefix + _fake_tide_side=left set -f left (for item in $fake_tide_left_prompt_items + _fake_tide_item_$item + end + if not set -e add_prefix + set_color $prev_bg_color -b normal + echo -ns $fake_tide_left_prompt_suffix + end) + + set -g add_prefix + _fake_tide_side=right set -f right (for item in $fake_tide_right_prompt_items + _fake_tide_item_$item + end + if not set -e add_prefix + set_color $prev_bg_color -b normal + echo -ns $fake_tide_right_prompt_suffix + end) + + if set -q _fake_tide_prompt_and_frame_color # If prompt is two lines + test "$fake_tide_left_prompt_frame_enabled" = true && + set left[1] "$_fake_tide_prompt_and_frame_color╭─$left[1]" && + set left[2] "$_fake_tide_prompt_and_frame_color╰─$left[2]" + test "$fake_tide_right_prompt_frame_enabled" = true && + set right[1] "$right[1]$_fake_tide_prompt_and_frame_color─╮" && + set right[2] "$right[2]$_fake_tide_prompt_and_frame_color─╯" + + # 5 = @PWD@ length which will be replaced + math $fake_columns+5-(string length --visible "$left[1]$right[1]") | read -lx dist_btwn_sides + echo -ns "$right[2]"\n(string replace @PWD@ (_fake_tide_pwd) "$left[1]")$_fake_tide_prompt_and_frame_color + + string repeat --no-newline --max (math max 0, $dist_btwn_sides-$_tide_pwd_len) $fake_tide_prompt_icon_connection + echo -ns "$right[1]"\n"$left[2] " + else + math $fake_columns+5-(string length --visible "$left[1]$right[1]") -$fake_tide_prompt_min_cols | read -lx dist_btwn_sides + string replace @PWD@ (_fake_tide_pwd) "$right[1]" "$left[1] " + end +end + +function _fake_tide_item_pwd + _fake_tide_print_item pwd @PWD@ +end diff --git a/config/fish/functions/tide/configure/functions/_fake_tide_pwd.fish b/config/fish/functions/tide/configure/functions/_fake_tide_pwd.fish new file mode 100644 index 0000000..433eafa --- /dev/null +++ b/config/fish/functions/tide/configure/functions/_fake_tide_pwd.fish @@ -0,0 +1,11 @@ +function _fake_tide_pwd + set -l out ( + set_color $fake_tide_pwd_color_dirs + echo -ns $fake_tide_pwd_icon' ' '~/' + set_color -o $fake_tide_pwd_color_anchors + echo -ns src + set_color normal -b $fake_tide_pwd_bg_color + ) + set -g _tide_pwd_len (string length --visible $out) + echo -ns $out +end diff --git a/config/fish/functions/tide/configure/icons.fish b/config/fish/functions/tide/configure/icons.fish new file mode 100644 index 0000000..70611cd --- /dev/null +++ b/config/fish/functions/tide/configure/icons.fish @@ -0,0 +1,40 @@ +tide_aws_icon  # Actual aws glyph is harder to see +tide_character_icon ❯ +tide_character_vi_icon_default ❮ +tide_character_vi_icon_replace ▶ +tide_character_vi_icon_visual V +tide_cmd_duration_icon +tide_crystal_icon  +tide_direnv_icon ▼ +tide_distrobox_icon 󰆧 +tide_docker_icon  +tide_elixir_icon  +tide_gcloud_icon 󰊭 # Actual google cloud glyph is harder to see +tide_git_icon +tide_go_icon  +tide_java_icon  +tide_jobs_icon  +tide_kubectl_icon 󱃾 +tide_nix_shell_icon  +tide_node_icon  # Actual nodejs glyph is harder to see +tide_os_icon $os_branding_icon +tide_php_icon  +tide_private_mode_icon 󰗹 +tide_prompt_icon_connection ' ' +tide_pulumi_icon  +tide_pwd_icon +tide_pwd_icon_home +tide_pwd_icon_unwritable  +tide_python_icon 󰌠 +tide_ruby_icon  +tide_rustc_icon  +tide_shlvl_icon  +tide_status_icon ✔ +tide_status_icon_failure ✘ +tide_terraform_icon 󱁢 +tide_toolbox_icon  +tide_vi_mode_icon_default D +tide_vi_mode_icon_insert I +tide_vi_mode_icon_replace R +tide_vi_mode_icon_visual V +tide_zig_icon  diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf new file mode 100644 index 0000000..6251d08 --- /dev/null +++ b/config/kitty/kitty.conf @@ -0,0 +1,123 @@ +# _ _ _ _ _ _ _ +# | | _(_) |_| |_ _ _ | |_ ___ _ __ _ __ ___ (_)_ __ __ _| | +# | |/ / | __| __| | | | | __/ _ \ '__| '_ ` _ \| | '_ \ / _` | | +# | <| | |_| |_| |_| | | || __/ | | | | | | | | | | | (_| | | +# |_|\_\_|\__|\__|\__, | \__\___|_| |_| |_| |_|_|_| |_|\__,_|_| +# |___/ _ _ _ +# ___ _ _ ___| |_ ___ _ __ ___ (_)______ _| |_(_) ___ _ __ +# / __| | | / __| __/ _ \| '_ ` _ \| |_ / _` | __| |/ _ \| '_ \ +# | (__| |_| \__ \ || (_) | | | | | | |/ / (_| | |_| | (_) | | | | +# \___|\__,_|___/\__\___/|_| |_| |_|_/___\__,_|\__|_|\___/|_| |_| + +########################################################################## + +# themes +#include GruvBox_DarkHard.conf +#include Wryan.conf +#include VSCode_Dark.conf + +# terminal opacity and blur +#background_image /home/dukantic/Hermit_Purple/wallpaper_kitty.jpg +#background_image_layout cscaled +background_opacity 0.7 + + +# advance +term xterm-kitty + +# terminal bell +enable_audio_bell no + + +# os specific tweaks (Gnome window decoration for wayland) +#linux_display_server x11 + +# font +font_family Terminess Nerd Font +bold_font auto +italic_font auto +bold_italic_font auto +font_size 20 + +dpi 120.0 + + + + +# font size management +# map ctrl+shift+backspace change_font_size all 0 + +# cursor customization +# block / beam / underline +cursor_shape block +cursor_blink_interval 0 +cursor_stop_blinking_after 0 +shell_integration no-cursor + + +cursor_trail 1 +cursor_trail_decay 0.1 0.4 + +# scrollback +# scrollback_lines 5000 +#wheel_scroll_multiplier 3.0 + +# mouse +mouse_hide_wait -1 + +# window layout +#remember_window_size no +#initial_window_width 1200 +#initial_window_height 750 +#window_border_width 1.5pt +#enabled_layouts tall +#window_padding_width 0 +#window_margin_width 2 +#hide_window_decorations no + +# window management + +#map ctrl+shift+enter new_window +#map ctrl+shift+] next_window +#map ctrl+shift+[ previous_window + +# layout management +#map ctrl+shift+l next_layout +#map ctrl+alt+r goto_layout tall +#map ctrl+alt+s goto_layout stack + +# tab bar customization +#tab_bar_style powerline +#tab_powerline_style slanted +#tab_bar_edge bottom +#tab_bar_align left +#active_tab_font_style bold +#inactive_tab_font_style normal + +# tab management +#map ctrl+shift+t new_tab +#map ctrl+shift+right next_tab +#map ctrl+shift+left previous_tab +#map ctrl+shift+q close_tab + +background #000000 +foreground #f1f1f1 +cursor #4c4c4c +selection_background #414141 +color0 #2a2a2a +color8 #666666 +color1 #ff0000 +color9 #ff007f +color2 #78ff0e +color10 #66ff66 +color3 #e6be00 +color11 #f3d64d +color4 #396ad6 +color12 #7099ec +color5 #b348bd +color13 #da66e5 +color6 #66ccff +color14 #79def1 +color7 #bababa +color15 #ffffff +selection_foreground #000000 diff --git a/config/nvim/init.lua b/config/nvim/init.lua new file mode 100644 index 0000000..3a78cb3 --- /dev/null +++ b/config/nvim/init.lua @@ -0,0 +1,5 @@ +require("config.options") +require("config.keymaps") +require("config.lazy") +require("config.lsp") +require("config.cmp") diff --git a/config/nvim/lazy-lock.json b/config/nvim/lazy-lock.json new file mode 100644 index 0000000..38e272d --- /dev/null +++ b/config/nvim/lazy-lock.json @@ -0,0 +1,29 @@ +{ + "LuaSnip": { "branch": "master", "commit": "c1851d5c519611dfc451b6582961b2602e0af89b" }, + "bluloco.nvim": { "branch": "main", "commit": "29322e83d4e5a1577c20532fee7173a9e7c9bd2b" }, + "buffer_manager.nvim": { "branch": "main", "commit": "4ae0b2de328ef1a7effad830d716c231fe9a6af2" }, + "cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "a8912b88ce488f411177fc8aed358b04dc246d7b" }, + "cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "031e6ba70b0ad5eee49fd2120ff7a2e325b17fa7" }, + "cmp-path": { "branch": "main", "commit": "c6635aae33a50d6010bf1aa756ac2398a2d54c32" }, + "cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" }, + "dashboard-nvim": { "branch": "master", "commit": "c42fcfbd96dfcaa486c0a0ab52494316f1c31350" }, + "indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" }, + "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, + "lush.nvim": { "branch": "main", "commit": "45a79ec4acb5af783a6a29673a999ce37f00497e" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "d39a75bbce4b8aad5d627191ea915179c77c100f" }, + "mason-null-ls.nvim": { "branch": "main", "commit": "de19726de7260c68d94691afb057fa73d3cc53e7" }, + "mason.nvim": { "branch": "main", "commit": "888d6ee499d8089a3a4be4309d239d6be1c1e6c0" }, + "null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" }, + "nvim-autopairs": { "branch": "master", "commit": "4d74e75913832866aa7de35e4202463ddf6efd1b" }, + "nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" }, + "nvim-lspconfig": { "branch": "master", "commit": "ac1dfbe3b60e5e23a2cff90e3bd6a3bc88031a57" }, + "nvim-tree.lua": { "branch": "master", "commit": "543ed3cac212dc3993ef9f042f6c0812e34ddd43" }, + "nvim-treesitter": { "branch": "master", "commit": "066fd6505377e3fd4aa219e61ce94c2b8bdb0b79" }, + "nvim-treesitter-textobjects": { "branch": "master", "commit": "89ebe73cd2836db80a22d9748999ace0241917a5" }, + "nvim-web-devicons": { "branch": "master", "commit": "1fb58cca9aebbc4fd32b086cb413548ce132c127" }, + "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, + "telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, + "vim-textobj-parameter": { "branch": "master", "commit": "201144f19a1a7081033b3cf2b088916dd0bcb98c" }, + "vim-textobj-user": { "branch": "master", "commit": "41a675ddbeefd6a93664a4dc52f302fe3086a933" } +} diff --git a/config/nvim/lua/config/cmp.lua b/config/nvim/lua/config/cmp.lua new file mode 100644 index 0000000..cf64cca --- /dev/null +++ b/config/nvim/lua/config/cmp.lua @@ -0,0 +1,25 @@ +local cmp = require("cmp") +local luasnip = require("luasnip") + +cmp.setup({ + snippet = { + expand = function(args) + luasnip.lsp_expand(args.body) + end, + }, + mapping = { + [""] = cmp.mapping.select_next_item(), + [""] = cmp.mapping.select_prev_item(), + [""] = cmp.mapping.confirm({ select = true }), + -- add more mappings if needed + }, + sources = { + { name = "nvim_lsp" }, + { name = "buffer" }, + { name = "path" }, + { name = "luasnip" }, + { name = 'nvim_lsp_signature_help' } + }, +}) + + diff --git a/config/nvim/lua/config/keymaps.lua b/config/nvim/lua/config/keymaps.lua new file mode 100644 index 0000000..5f61142 --- /dev/null +++ b/config/nvim/lua/config/keymaps.lua @@ -0,0 +1,9 @@ +vim.g.mapleader = " " + +local map = vim.keymap.set +map("n", "e", ":nvimtreetoggle") +map("n", "q", ":q") +map("n", "w", ":w") +vim.api.nvim_set_keymap('n', 'e', 'lua vim.diagnostic.open_float()', { noremap = true, silent = true }) + +vim.cmd [[tnoremap ]] diff --git a/config/nvim/lua/config/lazy.lua b/config/nvim/lua/config/lazy.lua new file mode 100644 index 0000000..40e2701 --- /dev/null +++ b/config/nvim/lua/config/lazy.lua @@ -0,0 +1,267 @@ +--Bootstrap lazy.nvim si pas encore installé +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", "clone", "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", lazypath + }) +end +vim.opt.rtp:prepend(lazypath) + +-- Plugins +require("lazy").setup({ + { + "uloco/bluloco.nvim", + lazy = false, + priority = 1000, + dependencies = { "rktjmp/lush.nvim" }, + config = function() + -- your optional config goes here, see below. + require("bluloco").setup { + style = "dark", -- "auto" | "dark" | "light" + transparent = true, + italics = false, + guicursor = true, + } + + vim.opt.termguicolors = true + vim.cmd "colorscheme bluloco" + end, + }, + + -- File explorer + { + 'nvim-tree/nvim-tree.lua', + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + require('nvim-tree').setup({ + view = { + width = 30, + side = 'left', + }, + renderer = { + icons = { + show = { + git = true, + folder = true, + file = true, + folder_arrow = true, + }, + }, + }, + }) + end + }, { + "j-morano/buffer_manager.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + config = function() + require("buffer_manager").setup({}) + end, +}, + + + + -- LSP and Mason + "neovim/nvim-lspconfig", + "williamboman/mason.nvim", + "williamboman/mason-lspconfig.nvim", + -- Completion + "hrsh7th/nvim-cmp", + "hrsh7th/cmp-nvim-lsp", + -- Snippets + "L3MON4D3/LuaSnip", + { + 'windwp/nvim-autopairs', + event = "InsertEnter", + config = function() + require("nvim-autopairs").setup() + end + }, + + -- Fuzzy finder + { "nvim-telescope/telescope.nvim", dependencies = { "nvim-lua/plenary.nvim" } }, + + -- LSP and Mason + "neovim/nvim-lspconfig", + { + "williamboman/mason.nvim", + build = ":MasonUpdate", -- keep Mason packages updated + config = function() + require("mason").setup() + end, + }, + { + "williamboman/mason-lspconfig.nvim", + config = function() + require("mason-lspconfig").setup({ + ensure_installed = { "pyright", "tsserver", "lua_ls" }, + automatic_installation = true, + }) + end, + }, + { + "jose-elias-alvarez/null-ls.nvim", -- install null-ls.nvim plugin + dependencies = { "nvim-lua/plenary.nvim" }, -- null-ls dependency + config = function() + require("null-ls").setup() + end, + }, + { + "jay-babu/mason-null-ls.nvim", + config = function() + require("mason-null-ls").setup({ + ensure_installed = { "prettier", "eslint_d", "stylua" }, + automatic_installation = true, + }) + end, + }, + { + "kana/vim-textobj-user", + }, + { + "sgur/vim-textobj-parameter", + dependencies = { "kana/vim-textobj-user" } + }, + + + { + 'nvim-treesitter/nvim-treesitter', + build = ':TSUpdate', + config = function() + require('nvim-treesitter.configs').setup { + ensure_installed = { "lua", "python", "javascript", "typescript", "c", "cpp", "java", "rust", "go" }, -- ajoute les langages que tu veux + highlight = { + enable = true, + }, + textobjects = { + select = { + enable = true, + lookahead = true, + keymaps = { + ["aa"] = "@parameter.outer", + ["ia"] = "@parameter.inner", + }, + }, + move = { + enable = true, + set_jumps = true, + goto_next_start = { + ["]a"] = "@parameter.inner", + }, + goto_previous_start = { + ["[a"] = "@parameter.inner", + }, + }, + }, + } + end, + dependencies = { + { + 'nvim-treesitter/nvim-treesitter-textobjects', + }, + }, + }, { 'hrsh7th/nvim-cmp' }, + { 'hrsh7th/cmp-nvim-lsp-signature-help' }, + -- Completion + "hrsh7th/nvim-cmp", + "hrsh7th/cmp-nvim-lsp", + -- Snippets + "L3MON4D3/LuaSnip", + { + "hrsh7th/nvim-cmp", -- Completion plugin + "hrsh7th/cmp-nvim-lsp", -- LSP source for nvim-cmp + "hrsh7th/cmp-buffer", -- Buffer completions + "hrsh7th/cmp-path", -- Path completions + "saadparwaiz1/cmp_luasnip", -- Snippet completions + "L3MON4D3/LuaSnip", -- Snippet engine + }, + -- Fuzzy finder + { + "nvim-telescope/telescope.nvim", + version = false, + dependencies = { "nvim-lua/plenary.nvim" }, + config = function() + local telescope = require("telescope") + telescope.setup({ + defaults = { + layout_strategy = "horizontal", + layout_config = { preview_width = 0.5 }, + }, + }) + + -- Keymaps + vim.keymap.set("n", "ff", "Telescope find_files", { desc = "Find files" }) + vim.keymap.set("n", "fg", "Telescope live_grep", { desc = "Live grep" }) + vim.keymap.set("n", "", "Telescope buffers", { desc = "List buffers" }) + vim.keymap.set("n", "fh", "Telescope help_tags", { desc = "Help tags" }) + end, + }, + { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + event = "BufReadPre", + opts = { + indent = { + char = "▏", + }, + whitespace = { + remove_blankline_trail = false, + }, + scope = { enabled = false }, + }, + }, + { + "nvimdev/dashboard-nvim", + event = "VimEnter", + dependencies = { "nvim-tree/nvim-web-devicons" }, + config = function() + require("dashboard").setup { + theme = "hyper", + config = { + + header = { + " ", + " ▄▄▄▄▄ ▄▄ ▄▄▄ ▄▄ ██ ", + " ██▀▀▀██ ██ ███ ██ ▀▀ ", + " ██ ██ ██ ██ ██ ▄██▀ ██▀█ ██ ██▄ ▄██ ████ ████▄██▄ ", + " ██ ██ ██ ██ ██▄██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ", + " ██ ██ ██ ██ ██▀██▄ ██ █▄██ ▀█▄▄█▀ ██ ██ ██ ██ ", + " ██▄▄▄██ ██▄▄▄███ ██ ▀█▄ ██ ███ ████ ▄▄▄██▄▄▄ ██ ██ ██ ", + " ▀▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀ ▀▀▀ ▀▀ ▀▀▀ ▀▀ ▀▀▀▀▀▀▀▀ ▀▀ ▀▀ ▀▀ ", + " [ DukNvim ] ", + }, + + shortcut = { + { + desc = "󰈞 Find File", + group = "Label", + action = "Telescope find_files", + key = "f", + }, + { + desc = " New File", + group = "Label", + action = "ene | startinsert", + key = "n", + }, + { + desc = " Config", + group = "Number", + action = "e ~/.config/nvim/init.lua", + key = "c", + }, + { + desc = "󰗼 Quit", + group = "DiagnosticError", + action = "qa", + key = "q", + }, + }, + footer = { + "󰘧 Welcome to DukNvim.", + }, + } + } + end + }, +}) diff --git a/config/nvim/lua/config/lsp.lua b/config/nvim/lua/config/lsp.lua new file mode 100644 index 0000000..6b2ecee --- /dev/null +++ b/config/nvim/lua/config/lsp.lua @@ -0,0 +1,52 @@ + +require("mason-lspconfig").setup({ + ensure_installed = { + "rust_analyzer", -- Rust + "clangd", -- C/C++ + "pyright", -- Python + "html", -- HTML + "cssls", -- CSS + "ts_ls", -- JavaScript/TypeScript + "emmet_ls", -- Emmet support (verify availability) + "marksman", -- Markdown + "lua_ls", -- Lua + },automatic_enable = true, +}) + + +-- Configure Mason null-ls tools (formatters and linters) +require("mason-null-ls").setup({ + ensure_installed = { + "clippy", -- Rust linter + "clang-format", -- C/C++ formatter + "cpplint", -- C++ linter + "black", -- Python formatter + "flake8", -- Python linter + "isort", -- Python import sorter + "prettier", -- JS/HTML/CSS/MD formatter + "eslint_d", -- JS linter + "stylelint", -- CSS linter + "markdownlint" -- Markdown linter + }, + automatic_setup = true, +}) + +-- Configure Treesitter for better syntax highlighting +require("nvim-treesitter.configs").setup({ + ensure_installed = { + "rust", "java", "c", "cpp", "python", + "html", "css", "javascript", "typescript", + "markdown", "lua" + }, + highlight = { enable = true }, +}) +vim.diagnostic.config({ + virtual_text = { + prefix = '●', -- Could be '■', '▎', '●' or 'none' + spacing = 4, + }, + signs = true, -- Show signs in the gutter + underline = true, -- Underline the problematic code + update_in_insert = false, -- Do not update diagnostics while in insert mode + severity_sort = true, -- Sort diagnostics by severity +}) diff --git a/config/nvim/lua/config/options.lua b/config/nvim/lua/config/options.lua new file mode 100644 index 0000000..482949f --- /dev/null +++ b/config/nvim/lua/config/options.lua @@ -0,0 +1,38 @@ +vim.opt.number = true +vim.opt.relativenumber = true +vim.opt.tabstop = 4 +vim.opt.shiftwidth = 4 +vim.opt.expandtab = true +vim.opt.termguicolors = true +vim.opt.cursorline = true +vim.opt.clipboard = "unnamedplus" + + +-- Create an autocommand group to toggle relative number on InsertEnter/InsertLeave +vim.api.nvim_create_augroup("RelNumToggle", { clear = true }) + +vim.api.nvim_create_autocmd("InsertEnter", { + group = "RelNumToggle", + callback = function() + vim.opt.relativenumber = false -- Disable relative numbers in insert mode + end, +}) + +vim.api.nvim_create_autocmd("InsertLeave", { + group = "RelNumToggle", + callback = function() + vim.opt.relativenumber = true -- Enable relative numbers when leaving insert mode + end, +}) + + +vim.api.nvim_create_autocmd("BufWritePre", { + pattern = "*", + callback = function() + -- Vérifie s'il y a un client LSP actif pour ce buffer avant de formater + local clients = vim.lsp.get_active_clients({ bufnr = vim.api.nvim_get_current_buf() }) + if next(clients) ~= nil then + vim.lsp.buf.format({ async = false }) + end + end, +}) diff --git a/home/.bash_profile b/home/.bash_profile new file mode 100644 index 0000000..5b47b98 --- /dev/null +++ b/home/.bash_profile @@ -0,0 +1,6 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc +rclone mount onedrive: ~/onedrive/ --umask 022 --daemon --vfs-cache-mode full --dir-cache-time 72h --vfs-cache-max-age 1h --vfs-cache-max-size 1G & diff --git a/home/.bashrc b/home/.bashrc new file mode 100644 index 0000000..b308061 --- /dev/null +++ b/home/.bashrc @@ -0,0 +1,23 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias grep='grep --color=auto' + + +if [ -f /etc/bash_completion ]; then + . /etc/bash_completion +elif [ -f /usr/share/bash-completion/bash_completion ]; then + . /usr/share/bash-completion/bash_completion +elif [ -f /usr/local/etc/bash_completion ]; then + . /usr/local/etc/bash_completion +fi + + +alias vi='nvim' +export DBUS_SESSION_BUS_ADDRESS=$(dbus-launch | grep -o "unix:abstract=[^,]*" | head -n 1) +bind "set completion-ignore-case on" +export STEAM_RUNTIME=/home/dukantic/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/SteamLinuxRuntime_sniper/ diff --git a/home/.clang-format b/home/.clang-format new file mode 100644 index 0000000..129aca1 --- /dev/null +++ b/home/.clang-format @@ -0,0 +1,3 @@ +--- +BasedOnStyle: Chromium +IndentWidth: 4 diff --git a/home/Utils/C/Makefile b/home/Utils/C/Makefile new file mode 100644 index 0000000..a36db07 --- /dev/null +++ b/home/Utils/C/Makefile @@ -0,0 +1,27 @@ +CC = gcc +CFLAGS = -std=c11 -Wall -Wextra -Werror -Wconversion -Wshadow -Wpedantic +CFLAGS += -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes +CFLAGS += -Wmissing-declarations -Wfloat-equal -Wundef -Wpointer-arith +CFLAGS += -Wcast-align -Wwrite-strings -Wredundant-decls -Wnested-externs +CFLAGS += -Winline -O2 -g -fsanitize=address + +SRCS = $(wildcard src/**/*.c) $(wildcard src/*.c) +OBJS = $(patsubst src/%.c, build/%.o, $(SRCS)) + +all: a.out + +run: a.out + ./a.out + +a.out: $(OBJS) + $(CC) $(CFLAGS) -o a.out $^ + +build/%.o: src/%.c + @mkdir -p $(dir $@) + $(CC) $(CFLAGS) -c -o $@ $< + +clean: + rm -rf build/ a.out + +.PHONY: all clean + diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..2692db7 --- /dev/null +++ b/install.sh @@ -0,0 +1,7 @@ +#Exec all bash +echo -e "Installing of packages --------------------------------" +bash packagesNeeded.sh +echo -e "\nLink All Files ----------------------------------------" +bash linkAll.sh + +echo -e "\nDone !" diff --git a/kde_conf/shortcut_export.kksrc b/kde_conf/shortcut_export.kksrc new file mode 100644 index 0000000..3c3cafd --- /dev/null +++ b/kde_conf/shortcut_export.kksrc @@ -0,0 +1,449 @@ +[ActivityManager][Global Shortcuts] +switch-to-activity-18283154-c105-4bf7-aa40-def791c76b14= + +[KDE Keyboard Layout Switcher][Global Shortcuts] +Switch keyboard layout to English (US)= +Switch keyboard layout to English (US, alt. intl.)= +Switch to Last-Used Keyboard Layout=Meta+Alt+L +Switch to Next Keyboard Layout=Meta+Alt+K + +[StandardShortcuts] +AboutApp= +AboutKDE= +Activate Next Tab=Ctrl+PgDown; Ctrl+] +Activate Previous Tab=Ctrl+PgUp; Ctrl+[ +ActualSize=Ctrl+0 +AddBookmark=Ctrl+B +Back=Alt+Left; Back +BackwardWord=Ctrl+Left +Begin=Ctrl+Home +BeginningOfLine=Home +Clear= +Close=Ctrl+Esc; Ctrl+W +ConfigureNotifications= +ConfigureToolbars= +Copy=Ctrl+Ins; Ctrl+C +CreateFolder=Ctrl+Shift+N +Cut=Ctrl+X; Shift+Del +DeleteFile=Shift+Del +DeleteWordBack=Ctrl+Backspace +DeleteWordForward=Ctrl+Del +Deselect=Ctrl+Shift+A +DocumentBack=Alt+Shift+Left +DocumentForward=Alt+Shift+Right +Donate= +EditBookmarks= +End=Ctrl+End +EndOfLine=End +Find=Ctrl+F +FindNext=F3 +FindPrev=Shift+F3 +FitToHeight= +FitToPage= +FitToWidth= +Forward=Alt+Right; Forward +ForwardWord=Ctrl+Right +FullScreen=Ctrl+Shift+F +Goto= +GotoLine=Ctrl+G +GotoPage= +Help=F1 +Home=Alt+Home; Home Page +KeyBindings=Ctrl+Alt+, +Mail= +MoveToTrash=Del +New=Ctrl+N +Next=PgDown +NextCompletion=Ctrl+Down +Open=Ctrl+O +OpenContextMenu=Menu; Shift+F10 +OpenMainMenu=F10 +OpenRecent= +Paste=Shift+Ins; Ctrl+V +Paste Selection=Ctrl+Shift+Ins +Preferences=Ctrl+Shift+, +PrevCompletion=Ctrl+Up +Print=Ctrl+P +PrintPreview= +Prior=PgUp +Quit=Ctrl+Q +Redo=Ctrl+Shift+Z +Reload=Refresh; F5 +RenameFile=F2 +Replace=Ctrl+R +ReportBug= +Revert= +RotateDown=Down +RotateUp=Up +Save=Ctrl+S +SaveAs=Ctrl+Shift+S +SelectAll=Ctrl+A +ShowHideHiddenFiles=Ctrl+H; Alt+. +ShowMenubar=Ctrl+M +ShowStatusbar= +ShowToolbar= +Spelling= +SubstringCompletion=Ctrl+T +SwitchApplicationLanguage= +TextCompletion=Ctrl+E +Undo=Ctrl+Z +Up=Alt+Up +WhatsThis=Shift+F1 +Zoom= +ZoomIn=Ctrl++; Ctrl+= +ZoomOut=Ctrl+- + +[btop.desktop][Global Shortcuts] +_launch=Meta+B + +[kaccess][Global Shortcuts] +Toggle Screen Reader On and Off=Meta+Alt+S + +[kcm_touchpad][Global Shortcuts] +Disable Touchpad=Touchpad Off +Enable Touchpad=Touchpad On +Toggle Touchpad=Meta+Ctrl+Zenkaku Hankaku; Meta+Ctrl+Touchpad Toggle; Touchpad Toggle + +[kitty.desktop][Global Shortcuts] +_launch=Meta+Return + +[kmix][Global Shortcuts] +decrease_microphone_volume=Microphone Volume Down +decrease_volume=Volume Down +decrease_volume_small=Shift+Volume Down +increase_microphone_volume=Microphone Volume Up +increase_volume=Volume Up +increase_volume_small=Shift+Volume Up +mic_mute=Microphone Mute; Meta+Volume Mute +mute=Volume Mute + +[ksmserver][Global Shortcuts] +Halt Without Confirmation= +Lock Session=Screensaver +Log Out=Meta+Del +Log Out Without Confirmation= +LogOut= +Reboot= +Reboot Without Confirmation= +Shut Down= + +[ktorrent][Global Shortcuts] +queue_suspend=Alt+Shift+P +show_kt=Alt+Shift+T + +[kwin][Global Shortcuts] +Activate Window Demanding Attention=Meta+Ctrl+A +Cycle Overview= +Cycle Overview Opposite= +Decrease Opacity= +Edit Tiles=Meta+T +Expose=Ctrl+F9 +ExposeAll=Launch (C); Ctrl+F10 +ExposeClass=Ctrl+F7 +ExposeClassCurrentDesktop= +Grid View=Meta+G +Increase Opacity= +Kill Window=Meta+Ctrl+Esc +KrohnkiteBTreeLayout= +KrohnkiteColumnsLayout= +KrohnkiteDecrease= +KrohnkiteFloatAll=Meta+Shift+F +KrohnkiteFloatingLayout= +KrohnkiteFocusDown=Meta+J +KrohnkiteFocusLeft=Meta+H +KrohnkiteFocusNext= +KrohnkiteFocusPrev= +KrohnkiteFocusRight= +KrohnkiteFocusUp=Meta+K +KrohnkiteGrowHeight=Meta+Ctrl+J +KrohnkiteIncrease=Meta+I +KrohnkiteMonocleLayout=Meta+M +KrohnkiteNextLayout=Meta+\\ +KrohnkitePreviousLayout=Meta+| +KrohnkiteQuarterLayout= +KrohnkiteRotate= +KrohnkiteRotatePart= +KrohnkiteSetMaster= +KrohnkiteShiftDown=Meta+Shift+J +KrohnkiteShiftLeft=Meta+Shift+H +KrohnkiteShiftRight=Meta+Shift+L +KrohnkiteShiftUp=Meta+Shift+K +KrohnkiteShrinkHeight=Meta+Ctrl+K +KrohnkiteShrinkWidth=Meta+Ctrl+H +KrohnkiteSpiralLayout= +KrohnkiteSpreadLayout= +KrohnkiteStackedLayout= +KrohnkiteStairLayout= +KrohnkiteTileLayout= +KrohnkiteToggleFloat=Meta+F +KrohnkiteTreeColumnLayout= +KrohnkitegrowWidth=Meta+Ctrl+L +KrohnkitetoggleDock= +Move Tablet to Next Output= +MoveMouseToCenter=Meta+F6 +MoveMouseToFocus=Meta+F5 +MoveZoomDown= +MoveZoomLeft= +MoveZoomRight= +MoveZoomUp= +Overview= +Setup Window Shortcut= +Show Desktop=Meta+D +Suspend Compositing=Alt+Shift+F12 +Switch One Desktop Down=Meta+Ctrl+Down +Switch One Desktop Up=Meta+Ctrl+Up +Switch One Desktop to the Left=Meta+Ctrl+Left +Switch One Desktop to the Right=Meta+Ctrl+Right +Switch Window Down=Meta+Alt+Down +Switch Window Left=Meta+Alt+Left +Switch Window Right=Meta+Alt+Right +Switch Window Up=Meta+Alt+Up +Switch to Desktop 1=Meta+1 +Switch to Desktop 10=Meta+0 +Switch to Desktop 11= +Switch to Desktop 12= +Switch to Desktop 13= +Switch to Desktop 14= +Switch to Desktop 15= +Switch to Desktop 16= +Switch to Desktop 17= +Switch to Desktop 18= +Switch to Desktop 19= +Switch to Desktop 2=Meta+2 +Switch to Desktop 20= +Switch to Desktop 3=Meta+3 +Switch to Desktop 4=Meta+4 +Switch to Desktop 5=Meta+5 +Switch to Desktop 6=Meta+6 +Switch to Desktop 7=Meta+7 +Switch to Desktop 8=Meta+8 +Switch to Desktop 9=Meta+9 +Switch to Next Desktop= +Switch to Next Screen=Meta+. +Switch to Previous Desktop= +Switch to Previous Screen=Meta+, +Switch to Screen 0= +Switch to Screen 1= +Switch to Screen 2= +Switch to Screen 3= +Switch to Screen 4= +Switch to Screen 5= +Switch to Screen 6= +Switch to Screen 7= +Switch to Screen Above= +Switch to Screen Below= +Switch to Screen to the Left= +Switch to Screen to the Right= +Toggle Night Color= +Toggle Window Raise/Lower= +Walk Through Windows=Alt+Tab +Walk Through Windows (Reverse)=Alt+Shift+Tab +Walk Through Windows Alternative= +Walk Through Windows Alternative (Reverse)= +Walk Through Windows of Current Application=Alt+` +Walk Through Windows of Current Application (Reverse)=Alt+~ +Walk Through Windows of Current Application Alternative= +Walk Through Windows of Current Application Alternative (Reverse)= +Window Above Other Windows= +Window Below Other Windows= +Window Close=Meta+C; Alt+F4 +Window Custom Quick Tile Bottom= +Window Custom Quick Tile Left= +Window Custom Quick Tile Right= +Window Custom Quick Tile Top= +Window Fullscreen= +Window Grow Horizontal= +Window Grow Vertical= +Window Lower= +Window Maximize=Meta+PgUp +Window Maximize Horizontal= +Window Maximize Vertical= +Window Minimize=Meta+PgDown +Window Move= +Window Move Center= +Window No Border= +Window On All Desktops= +Window One Desktop Down=Meta+Ctrl+Shift+Down +Window One Desktop Up=Meta+Ctrl+Shift+Up +Window One Desktop to the Left=Meta+Ctrl+Shift+Left +Window One Desktop to the Right=Meta+Ctrl+Shift+Right +Window One Screen Down= +Window One Screen Up= +Window One Screen to the Left= +Window One Screen to the Right= +Window Operations Menu=Alt+F3 +Window Pack Down= +Window Pack Left= +Window Pack Right= +Window Pack Up= +Window Quick Tile Bottom=Meta+Down +Window Quick Tile Bottom Left= +Window Quick Tile Bottom Right= +Window Quick Tile Left=Meta+Left +Window Quick Tile Right=Meta+Right +Window Quick Tile Top=Meta+Up +Window Quick Tile Top Left= +Window Quick Tile Top Right= +Window Raise= +Window Resize= +Window Shade= +Window Shrink Horizontal= +Window Shrink Vertical= +Window to Desktop 1=Meta+! +Window to Desktop 10=Meta+) +Window to Desktop 11= +Window to Desktop 12= +Window to Desktop 13= +Window to Desktop 14= +Window to Desktop 15= +Window to Desktop 16= +Window to Desktop 17= +Window to Desktop 18= +Window to Desktop 19= +Window to Desktop 2=Meta+@ +Window to Desktop 20= +Window to Desktop 3=Meta+# +Window to Desktop 4=Meta+$ +Window to Desktop 5=Meta+% +Window to Desktop 6=Meta+ោ +Window to Desktop 7=Meta+& +Window to Desktop 8=Meta+* +Window to Desktop 9=Meta+( +Window to Next Desktop= +Window to Next Screen=Meta+Shift+Right +Window to Previous Desktop= +Window to Previous Screen=Meta+Shift+Left +Window to Screen 0= +Window to Screen 1= +Window to Screen 2= +Window to Screen 3= +Window to Screen 4= +Window to Screen 5= +Window to Screen 6= +Window to Screen 7= +disableInputCapture=Meta+Shift+Esc +view_actual_size= +view_zoom_in=Meta++; Meta+= +view_zoom_out=Meta+- + +[mediacontrol][Global Shortcuts] +mediavolumedown= +mediavolumeup= +nextmedia=Media Next +pausemedia=Media Pause +playmedia= +playpausemedia=Media Play +previousmedia=Media Previous +stopmedia=Media Stop + +[org.kde.dolphin.desktop][Global Shortcuts] +_launch=Meta+E + +[org.kde.kcalc.desktop][Global Shortcuts] +_launch=Calculator + +[org.kde.konsole.desktop][Global Shortcuts] +NewTab= +NewWindow= +_launch=Ctrl+Alt+T + +[org.kde.krunner.desktop][Global Shortcuts] +RunClipboard=Alt+Shift+F2 +_launch=Search; Meta+P + +[org.kde.kscreen.desktop][Global Shortcuts] +ShowOSD=Display + +[org.kde.plasma-systemmonitor.desktop][Global Shortcuts] +_launch=Ctrl+Shift+Esc + +[org.kde.plasma.emojier.desktop][Global Shortcuts] +_launch=Meta+Ctrl+Alt+Shift+Space + +[org.kde.spectacle.desktop][Global Shortcuts] +ActiveWindowScreenShot= +CurrentMonitorScreenShot= +FullScreenScreenShot= +OpenWithoutScreenshot= +RecordRegion= +RecordScreen= +RecordWindow= +RectangularRegionScreenShot= +WindowUnderCursorScreenShot= +_launch=Meta+Shift+S + +[org.kde.touchpadshortcuts.desktop][Global Shortcuts] +DisableTouchpad=Touchpad Off +EnableTouchpad=Touchpad On +ToggleTouchpad=Meta+Ctrl+Touchpad Toggle; Meta+Ctrl+Zenkaku Hankaku; Touchpad Toggle + +[org_kde_powerdevil][Global Shortcuts] +Decrease Keyboard Brightness=Keyboard Brightness Down +Decrease Screen Brightness=Monitor Brightness Down +Decrease Screen Brightness Small=Shift+Monitor Brightness Down +Hibernate=Hibernate +Increase Keyboard Brightness=Keyboard Brightness Up +Increase Screen Brightness=Monitor Brightness Up +Increase Screen Brightness Small=Shift+Monitor Brightness Up +PowerDown=Power Down +PowerOff=Power Off +Sleep=Sleep +Toggle Keyboard Backlight=Keyboard Light On/Off +Turn Off Screen= +powerProfile=Battery + +[plasmashell][Global Shortcuts] +activate application launcher=Alt+F1 +activate task manager entry 1= +activate task manager entry 10= +activate task manager entry 2= +activate task manager entry 3= +activate task manager entry 4= +activate task manager entry 5= +activate task manager entry 6= +activate task manager entry 7= +activate task manager entry 8= +activate task manager entry 9= +activate widget 114= +activate widget 81= +clear-history= +clipboard_action=Meta+Ctrl+X +cycle-panels=Meta+Alt+P +cycleNextAction= +cyclePrevAction= +edit_clipboard= +manage activities=Meta+Q +next activity=Meta+A +previous activity=Meta+Shift+A +repeat_action= +show dashboard=Ctrl+F12 +show-barcode= +show-on-mouse-pos=Meta+V +stop current activity=Meta+S +switch to next activity= +switch to previous activity= +toggle do not disturb= + +[systemsettings.desktop][Global Shortcuts] +_launch=Tools +kcm-kscreen= +kcm-lookandfeel= +kcm-powerdevilprofilesconfig= +kcm-screenlocker= +kcm-users= + +[wacomtablet][Global Shortcuts] +Map to fullscreen=Meta+Ctrl+F +Map to screen 1=Meta+Ctrl+1 +Map to screen 2=Meta+Ctrl+2 +Next Profile=Meta+Ctrl+N +Previous Profile=Meta+Ctrl+P +Toggle screen map selection=Meta+Ctrl+M +Toggle stylus mode=Meta+Ctrl+S +Toggle touch tool=Meta+Ctrl+T + +[zen.desktop][Global Shortcuts] +_launch=Meta+W +new-private-window= +new-window= +profilemanager= diff --git a/linkAll.sh b/linkAll.sh new file mode 100644 index 0000000..dd34dea --- /dev/null +++ b/linkAll.sh @@ -0,0 +1,29 @@ +DIR_CONF="$(pwd)/config" +DIR_HOME="$(pwd)/home" +DEST_CONF_DIR="$HOME/.config/" +DEST_HOME_DIR="$HOME/" + + + +# Link all child +for item in "$DIR_CONF"/*; do + basename=$(basename "$item") + if [ ! -L "$DEST_CONF_DIR$basename" ]; then + mv "$DEST_CONF_DIR$basename" "$DEST_CONF_DIR$basename.old" &> /dev/null + fi + ln -sf "$item" "$DEST_CONF_DIR" +done + +echo "All link done in $DEST_CONF_DIR" + +for item in "$DIR_HOME"/.* "$DIR_HOME"/*; do + basename=$(basename "$item") + if [ ! -L "$DEST_HOME_DIR$basename" ]; then + mv "$DEST_HOME_DIR$basename" "$DEST_HOME_DIR$basename.old" &> /dev/null + fi + echo $item + ln -sf "$item" "$DEST_HOME_DIR" +done + + +echo "All link done in $DEST_HOME_DIR" diff --git a/packagesNeeded.sh b/packagesNeeded.sh new file mode 100644 index 0000000..04ac906 --- /dev/null +++ b/packagesNeeded.sh @@ -0,0 +1,72 @@ +#!/bin/bash + +# Update system +sudo pacman -Syu --noconfirm + +# Install yay if not already installed +if ! command -v yay &>/dev/null; then + echo "[+] Installing yay..." + sudo pacman -S --noconfirm --needed git base-devel + git clone https://aur.archlinux.org/yay.git /tmp/yay + (cd /tmp/yay && makepkg -si --noconfirm) + rm -rf /tmp/yay +else + echo "[✓] yay is already installed." +fi + +# Define packages to install with pacman +pacman_packages=( + npm + python3 + kitty + neovim + btop + rclone + jdk-openjdk + flatpak + figlet + fish + rust + bugstalker +) + +# Define packages to install from AUR +aur_packages=( + zenbrowser + spotify + # Add other AUR packages you need here +) + +# Install pacman packages +echo "[+] Installing pacman packages..." +for package in "${pacman_packages[@]}"; do + if ! pacman -Qi "$package" &>/dev/null; then + echo " → Installing $package" + sudo pacman -S --noconfirm "$package" + else + echo " [✓] $package is already installed" + fi +done + +# Install AUR packages +echo "[+] Installing AUR packages..." +for package in "${aur_packages[@]}"; do + if ! yay -Qi "$package" &>/dev/null; then + echo " → Installing $package (AUR)" + yay -S --noconfirm "$package" + else + echo " [✓] $package is already installed" + fi +done + +# Add Flathub repository if not already added +if ! flatpak remote-list | grep -q flathub; then + echo "[+] Adding Flathub repository..." + flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo +else + echo "[✓] Flathub repository is already configured" +fi +curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher + +echo "[✓] All packages are installed." +